summaryrefslogtreecommitdiffhomepage
path: root/300.bzip2.vars
blob: 0dfccc15cf00a384ebf334a5dc099caa264504f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# . ./build.vars and set -o errexit are assumed.
#

pkg_bzip2_install_post() {
	set -- bzcmp bzegrep bzfgrep bzless;
	while [ ${#} -gt 0 ]; do
		[ -f ${PKG_PREFIX}/bin/${1} ] &&\
			ln -sf $(basename $(readlink ${PKG_PREFIX}/bin/${1}))\
				${PKG_PREFIX}/bin/${1};
		shift;
	done;
};

# vim:filetype=sh