# # set -o errexit -o noglob are assumed. # pkg_install() { 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 ]; then cat > "${PKG_BASE_DIR}/${PKG_NAME}.spec" <