# # set -o errexit -o noglob are assumed. # pkg_install() { local _pkg_version_rpm=""; ex_rtl_fileop mkdir "${PKG_PREFIX}"; find "${PKG_DESTDIR}" \ -type d -exec chmod 0755 {} \;; find "${PKG_DESTDIR}" \ \( -not -perm /0111 \) \ -type f -exec chmod 0644 {} \;; find "${PKG_DESTDIR}" \ -perm /0111 -type f -exec chmod 0755 {} \;; tar -C "${PKG_DESTDIR}" -cpf - . |\ tar -C "${PKG_PREFIX}" --overwrite -xpf -; if [ "${ARG_PACKAGE:-0}" -eq 1 ]; then tar -C "${PKG_DESTDIR}" -cpf - . |\ gzip -c -9 - > "${PKG_BASE_DIR}/${PKG_NAME}.tgz" fi; if [ "${ARG_RPM:-0}" -eq 1 ]\ && [ -x "$(which rpmbuild 2>/dev/null)" ]; then _pkg_version_rpm="${PKG_VERSION:-Unknown}"; _pkg_version_rpm="${_pkg_version_rpm%%-*}"; cat > "${PKG_BASE_DIR}/${PKG_NAME}-${_pkg_version_rpm}.spec" <