summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install.subr
blob: cd55fdb4eceb014e92ca09a43f21ef5776ac72ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# set -o errexit -o noglob are assumed.
#

pkg_install() {
	local _pkglist_name="";
	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 [ [ "${PKG_PKGLIST_DISABLE:-0}" -eq 0 ]; then
		if [ ! -e "${PREFIX}/pkglist.${PKG_BUILD_TYPE}" ]; then
			touch "${PREFIX}/pkglist.${PKG_BUILD_TYPE}";
		fi;
		_pkglist_name="${PKG_BASE_DIR##*/}";
		_pkglist_name="${_pkglist_name%%-*}";
		echo "${_pkglist_name}" >> "${PREFIX}/pkglist.${PKG_BUILD_TYPE}";
	fi;
};

# vim:filetype=sh