summaryrefslogtreecommitdiffhomepage
path: root/subr.pkg/pkg_install_make.subr
blob: a3611b323d1b5f09a600f598a78b39e66196a341 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (c) 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de>
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_install_make() {
	local	_pim_group_name="${1}" _pim_pkg_name="${2}" _pim_restart_at="${3}"
		_pim_libtool="" _pim_rc=0 _pim_subdir="";

	case "${PKG_LIBTOOL:-}" in
	"")	_pim_libtool=""; ;;
	none)	_pim_libtool=""; ;;
	*)	_pim_libtool="${PKG_LIBTOOL}"; ;;
	esac;

	for _pim_subdir in ${PKG_MAKE_SUBDIRS:-:}; do
		if [ "${_pim_subdir}" = ":" ]; then
			_pim_subdir="";
		fi;

		if [ "${#_pim_libtool}" -gt 0 ]; then
			export MAKE="make LIBTOOL=${_pim_libtool}";
		fi;

		rtl_run_cmdlineV ":" "${PKG_MAKE}"				\
			${PKG_MAKEFLAGS_INSTALL:-}				\
			${PKG_MAKEFLAGS_INSTALL_EXTRA:-}			\
			AR="${PKG_AR}"						\
			CC="${PKG_CC}"						\
			RANLIB="${PKG_RANLIB}"					\
			${PKG_RANLIB_INSTALL:+"RANLIB=${PKG_RANLIB_INSTALL}"}	\
			${_pim_libtool:+"LIBTOOL=${_pim_libtool}"}		\
			"${PKG_MAKE_INSTALL_VNAME:-DESTDIR}=${PKG_DESTDIR}/"	\
			"${PKG_INSTALL_TARGET:-install}"			\
			${_pim_subdir:+-C "${_pim_subdir}"};
		_pim_rc="${?}";

		if [ "${#_pim_libtool}" -gt 0 ]; then
			unset MAKE;
		fi;

		if [ "${_pim_rc}" -ne 0 ]; then
			return 1;
		fi;
	done;

	return 0;
};

# vim:filetype=sh textwidth=0