summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_make.subr
blob: a5e58f60767ff9acb65a61eb9b215dd357139864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_install_make() {
	local _libtool="";
	case "${PKG_LIBTOOL:-}" in
	"")	_libtool=""; ;;
	none)	_libtool=""; ;;
	*)	_libtool="${PKG_LIBTOOL}"; ;;
	esac;
	rtl_run_cmd_unsplit make					\
		${PKG_MAKEFLAGS_INSTALL:-}				\
		${PKG_MAKEFLAGS_INSTALL_EXTRA:-}			\
		AR="${PKG_AR}" CC="${PKG_CC}" RANLIB="${PKG_RANLIB}"	\
		"${PKG_RANLIB_INSTALL:+RANLIB=${PKG_RANLIB_INSTALL}}"	\
		${_libtool:+"LIBTOOL=${_libtool}"}			\
		"${PKG_MAKE_INSTALL_VNAME:-DESTDIR}=${PKG_DESTDIR}/"	\
		${PKG_INSTALL_TARGET:-install};
};

# vim:filetype=sh