d8e2056a8f
Historically, PKGDESTDIR was only set during pkg_install, and
XBPS_PKGDESTDIR was set to indicate that we're in subpkg's
pkg_install.
However, from 0b95cb8f5d
, (Merge xbps-src code to make it usable in
a standalone mode., 2014-03-22), PKGDESTDIR is always set,
regardless of states.
Let's drop all usages of XBPS_PKGDESTDIR.
While we're at it, error out of vmove is used outside of subpkg.
70 lines
1.7 KiB
Bash
Executable file
70 lines
1.7 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# vim: set ts=4 sw=4 et:
|
|
#
|
|
# Passed arguments:
|
|
# $1 - pkgname [REQUIRED]
|
|
# $2 - subpkg mode [REQUIRED]
|
|
# $2 - cross target [OPTIONAL]
|
|
|
|
if [ $# -lt 2 -o $# -gt 3 ]; then
|
|
echo "${0##*/}: invalid number of arguments: pkgname subpkg-mode [cross-target]"
|
|
exit 1
|
|
fi
|
|
|
|
PKGNAME="$1"
|
|
SUBPKG_MODE="$2"
|
|
XBPS_CROSS_BUILD="$3"
|
|
|
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
|
. $f
|
|
done
|
|
|
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
|
|
|
for f in $XBPS_COMMONDIR/environment/install/*.sh; do
|
|
source_file "$f"
|
|
done
|
|
|
|
XBPS_INSTALL_DONE="${XBPS_STATEDIR}/${sourcepkg}_${XBPS_CROSS_BUILD}_install_done"
|
|
|
|
ch_wrksrc
|
|
|
|
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
|
|
|
|
run_step install "" skip
|
|
|
|
touch -f $XBPS_INSTALL_DONE
|
|
fi
|
|
exit 0
|
|
fi
|
|
|
|
XBPS_SUBPKG_INSTALL_DONE="${XBPS_STATEDIR}/${PKGNAME}_${XBPS_CROSS_BUILD}_subpkg_install_done"
|
|
|
|
# If it's a subpkg execute the pkg_install() function.
|
|
if [ ! -f $XBPS_SUBPKG_INSTALL_DONE ]; then
|
|
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
|
# Source all subpkg environment setup snippets.
|
|
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
|
source_file "$f"
|
|
done
|
|
|
|
${PKGNAME}_package
|
|
pkgname=$PKGNAME
|
|
|
|
source_file $XBPS_COMMONDIR/environment/build-style/${build_style}.sh
|
|
|
|
install -d $PKGDESTDIR
|
|
if declare -f pkg_install >/dev/null; then
|
|
run_pkg_hooks pre-install
|
|
run_func pkg_install
|
|
fi
|
|
fi
|
|
setup_pkg_depends ${pkgname:=$PKGNAME} || exit 1
|
|
run_pkg_hooks post-install
|
|
touch -f $XBPS_SUBPKG_INSTALL_DONE
|
|
fi
|
|
|
|
exit 0
|