2015-03-11 08:28:13 +01:00
|
|
|
#!/bin/bash
|
2014-03-22 12:31:42 +01:00
|
|
|
#
|
2014-04-09 16:40:27 +02:00
|
|
|
# vim: set ts=4 sw=4 et:
|
|
|
|
#
|
2014-03-22 12:31:42 +01:00
|
|
|
# Passed arguments:
|
|
|
|
# $1 - pkgname [REQUIRED]
|
2015-09-27 10:30:10 +02:00
|
|
|
# $2 - subpkg mode [REQUIRED]
|
2014-03-22 12:31:42 +01:00
|
|
|
# $2 - cross target [OPTIONAL]
|
|
|
|
|
2015-09-27 11:27:43 +02:00
|
|
|
if [ $# -lt 2 -o $# -gt 3 ]; then
|
|
|
|
echo "${0##*/}: invalid number of arguments: pkgname subpkg-mode [cross-target]"
|
2014-04-09 16:40:27 +02:00
|
|
|
exit 1
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
PKGNAME="$1"
|
2015-09-27 10:30:10 +02:00
|
|
|
SUBPKG_MODE="$2"
|
|
|
|
XBPS_CROSS_BUILD="$3"
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2014-09-05 11:10:07 +02:00
|
|
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
|
|
|
. $f
|
|
|
|
done
|
2014-03-22 12:31:42 +01:00
|
|
|
|
|
|
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
|
|
|
|
|
|
|
for f in $XBPS_COMMONDIR/environment/install/*.sh; do
|
2014-04-09 16:40:27 +02:00
|
|
|
source_file "$f"
|
2014-03-22 12:31:42 +01:00
|
|
|
done
|
|
|
|
|
2014-12-11 11:02:22 +01:00
|
|
|
XBPS_INSTALL_DONE="${XBPS_STATEDIR}/${sourcepkg}_${XBPS_CROSS_BUILD}_install_done"
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2017-11-18 14:15:55 +01:00
|
|
|
ch_wrksrc
|
2014-11-06 17:23:58 +01:00
|
|
|
|
2015-09-27 10:30:10 +02:00
|
|
|
if [ "$SUBPKG_MODE" = "no" ]; then
|
|
|
|
if [ ! -f $XBPS_INSTALL_DONE ] || [ -f $XBPS_INSTALL_DONE -a -n "$XBPS_BUILD_FORCEMODE" ]; then
|
|
|
|
mkdir -p $XBPS_DESTDIR/$XBPS_CROSS_TRIPLET/$pkgname-$version
|
2014-03-22 12:31:42 +01:00
|
|
|
|
2017-11-17 14:25:29 +01:00
|
|
|
run_step install "" skip
|
2015-09-27 18:51:58 +02:00
|
|
|
|
|
|
|
touch -f $XBPS_INSTALL_DONE
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
2014-08-25 22:34:13 +02:00
|
|
|
exit 0
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
2014-12-11 11:02:22 +01:00
|
|
|
XBPS_SUBPKG_INSTALL_DONE="${XBPS_STATEDIR}/${PKGNAME}_${XBPS_CROSS_BUILD}_subpkg_install_done"
|
2014-12-06 18:10:08 +01:00
|
|
|
|
2014-08-25 22:34:13 +02:00
|
|
|
# If it's a subpkg execute the pkg_install() function.
|
2015-09-24 16:12:10 +02:00
|
|
|
if [ ! -f $XBPS_SUBPKG_INSTALL_DONE ]; then
|
2014-12-06 18:10:08 +01:00
|
|
|
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
2014-12-06 13:45:49 +01:00
|
|
|
# Source all subpkg environment setup snippets.
|
|
|
|
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
|
|
|
source_file "$f"
|
|
|
|
done
|
2015-02-21 12:03:05 +01:00
|
|
|
|
2014-12-06 13:45:49 +01:00
|
|
|
${PKGNAME}_package
|
|
|
|
pkgname=$PKGNAME
|
|
|
|
|
2015-02-21 12:13:07 +01:00
|
|
|
source_file $XBPS_COMMONDIR/environment/build-style/${build_style}.sh
|
2015-02-21 12:03:05 +01:00
|
|
|
|
2014-12-06 13:45:49 +01:00
|
|
|
install -d $PKGDESTDIR
|
|
|
|
if declare -f pkg_install >/dev/null; then
|
|
|
|
export XBPS_PKGDESTDIR=1
|
2015-01-14 14:22:18 +01:00
|
|
|
run_pkg_hooks pre-install
|
2014-12-06 13:45:49 +01:00
|
|
|
run_func pkg_install
|
|
|
|
fi
|
2014-04-09 16:40:27 +02:00
|
|
|
fi
|
2014-12-06 18:10:08 +01:00
|
|
|
setup_pkg_depends ${pkgname:=$PKGNAME}
|
|
|
|
run_pkg_hooks post-install
|
|
|
|
touch -f $XBPS_SUBPKG_INSTALL_DONE
|
2014-03-22 12:31:42 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|