2015-03-11 07:28:13 +00:00
|
|
|
#!/bin/bash
|
2014-03-22 11:31:42 +00:00
|
|
|
#
|
2014-04-09 14:40:27 +00:00
|
|
|
# vim: set ts=4 sw=4 et:
|
|
|
|
#
|
2014-03-22 11:31:42 +00:00
|
|
|
# Passed arguments:
|
|
|
|
# $1 - pkgname [REQUIRED]
|
2015-09-27 08:30:10 +00:00
|
|
|
# $2 - subpkg mode [REQUIRED]
|
2014-03-22 11:31:42 +00:00
|
|
|
# $2 - cross target [OPTIONAL]
|
|
|
|
|
2015-09-27 09:27:43 +00:00
|
|
|
if [ $# -lt 2 -o $# -gt 3 ]; then
|
|
|
|
echo "${0##*/}: invalid number of arguments: pkgname subpkg-mode [cross-target]"
|
2014-04-09 14:40:27 +00:00
|
|
|
exit 1
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
PKGNAME="$1"
|
2015-09-27 08:30:10 +00:00
|
|
|
SUBPKG_MODE="$2"
|
|
|
|
XBPS_CROSS_BUILD="$3"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-09-05 09:10:07 +00:00
|
|
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
|
|
|
. $f
|
|
|
|
done
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
|
|
|
|
|
|
|
for f in $XBPS_COMMONDIR/environment/install/*.sh; do
|
2014-04-09 14:40:27 +00:00
|
|
|
source_file "$f"
|
2014-03-22 11:31:42 +00:00
|
|
|
done
|
|
|
|
|
2014-12-11 10:02:22 +00:00
|
|
|
XBPS_INSTALL_DONE="${XBPS_STATEDIR}/${sourcepkg}_${XBPS_CROSS_BUILD}_install_done"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2015-07-29 08:17:37 +00:00
|
|
|
cd "$wrksrc" || msg_error "$pkgver: cannot access to wrksrc [$wrksrc]\n"
|
2014-11-06 16:23:58 +00:00
|
|
|
if [ -n "$build_wrksrc" ]; then
|
|
|
|
cd $build_wrksrc || msg_error "$pkgver: cannot access to build_wrksrc [$build_wrksrc]\n"
|
|
|
|
fi
|
|
|
|
|
2015-09-27 08:30:10 +00: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 11:31:42 +00:00
|
|
|
|
2015-09-27 16:51:58 +00:00
|
|
|
# Run pre-install hooks
|
2015-09-27 08:30:10 +00:00
|
|
|
run_pkg_hooks pre-install
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2015-09-27 08:30:10 +00:00
|
|
|
# Run pre_install()
|
2015-09-27 16:48:20 +00:00
|
|
|
if declare -f pre_install >/dev/null; then
|
|
|
|
run_func pre_install
|
2014-08-25 20:34:13 +00:00
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2015-09-27 08:30:10 +00:00
|
|
|
# Run do_install()
|
2015-07-29 08:17:37 +00:00
|
|
|
cd "$wrksrc"
|
2014-08-25 20:34:13 +00:00
|
|
|
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
|
|
|
if declare -f do_install >/dev/null; then
|
|
|
|
run_func do_install
|
|
|
|
else
|
|
|
|
if [ ! -r $XBPS_BUILDSTYLEDIR/${build_style}.sh ]; then
|
|
|
|
msg_error "$pkgver: cannot find build helper $XBPS_BUILDSTYLEDIR/${build_style}.sh!\n"
|
|
|
|
fi
|
|
|
|
. $XBPS_BUILDSTYLEDIR/${build_style}.sh
|
|
|
|
run_func do_install
|
|
|
|
fi
|
2015-09-27 08:30:10 +00:00
|
|
|
# Run post_install()
|
2015-09-27 16:48:20 +00:00
|
|
|
cd "$wrksrc"
|
|
|
|
[ -n "$build_wrksrc" ] && cd $build_wrksrc
|
|
|
|
if declare -f post_install >/dev/null; then
|
|
|
|
run_func post_install
|
2014-04-09 14:40:27 +00:00
|
|
|
fi
|
2015-09-27 16:51:58 +00:00
|
|
|
|
|
|
|
touch -f $XBPS_INSTALL_DONE
|
2014-04-09 14:40:27 +00:00
|
|
|
fi
|
2014-08-25 20:34:13 +00:00
|
|
|
exit 0
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
2014-12-11 10:02:22 +00:00
|
|
|
XBPS_SUBPKG_INSTALL_DONE="${XBPS_STATEDIR}/${PKGNAME}_${XBPS_CROSS_BUILD}_subpkg_install_done"
|
2014-12-06 17:10:08 +00:00
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
# If it's a subpkg execute the pkg_install() function.
|
2015-09-24 14:12:10 +00:00
|
|
|
if [ ! -f $XBPS_SUBPKG_INSTALL_DONE ]; then
|
2014-12-06 17:10:08 +00:00
|
|
|
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
2014-12-06 12:45:49 +00:00
|
|
|
# Source all subpkg environment setup snippets.
|
|
|
|
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
|
|
|
source_file "$f"
|
|
|
|
done
|
2015-02-21 11:03:05 +00:00
|
|
|
|
2014-12-06 12:45:49 +00:00
|
|
|
${PKGNAME}_package
|
|
|
|
pkgname=$PKGNAME
|
|
|
|
|
2015-02-21 11:13:07 +00:00
|
|
|
source_file $XBPS_COMMONDIR/environment/build-style/${build_style}.sh
|
2015-02-21 11:03:05 +00:00
|
|
|
|
2014-12-06 12:45:49 +00:00
|
|
|
install -d $PKGDESTDIR
|
|
|
|
if declare -f pkg_install >/dev/null; then
|
|
|
|
export XBPS_PKGDESTDIR=1
|
2015-01-14 13:22:18 +00:00
|
|
|
run_pkg_hooks pre-install
|
2014-12-06 12:45:49 +00:00
|
|
|
run_func pkg_install
|
|
|
|
fi
|
2014-04-09 14:40:27 +00:00
|
|
|
fi
|
2014-12-06 17:10:08 +00:00
|
|
|
setup_pkg_depends ${pkgname:=$PKGNAME}
|
|
|
|
run_pkg_hooks post-install
|
|
|
|
touch -f $XBPS_SUBPKG_INSTALL_DONE
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|