2014-08-25 20:34: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:
|
2014-08-25 20:34:13 +00:00
|
|
|
# $1 - pkgname [REQUIRED]
|
|
|
|
# $2 - path to local repository [REQUIRED]
|
|
|
|
# $3 - cross-target [OPTIONAL]
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
if [ $# -lt 2 -o $# -gt 3 ]; then
|
2015-09-11 05:55:40 +00:00
|
|
|
echo "${0##*/}: invalid number of arguments: pkgname repository [cross-target]"
|
2014-04-09 14:40:27 +00:00
|
|
|
exit 1
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
PKGNAME="$1"
|
2014-08-25 20:34:13 +00:00
|
|
|
XBPS_REPOSITORY="$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
|
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
for f in $XBPS_COMMONDIR/environment/pkg/*.sh; do
|
2014-04-09 14:40:27 +00:00
|
|
|
source_file "$f"
|
2014-03-22 11:31:42 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
if [ "$sourcepkg" != "$PKGNAME" ]; then
|
2014-04-09 14:40:27 +00:00
|
|
|
# Source all subpkg environment setup snippets.
|
|
|
|
for f in ${XBPS_COMMONDIR}/environment/setup-subpkg/*.sh; do
|
|
|
|
source_file "$f"
|
|
|
|
done
|
2014-08-25 20:34:13 +00:00
|
|
|
|
2014-04-09 14:40:27 +00:00
|
|
|
${PKGNAME}_package
|
|
|
|
pkgname=$PKGNAME
|
2014-03-22 11:31:42 +00:00
|
|
|
fi
|
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
if [ -s $XBPS_MASTERDIR/.xbps_chroot_init ]; then
|
|
|
|
export XBPS_ARCH=$(cat $XBPS_MASTERDIR/.xbps_chroot_init)
|
|
|
|
fi
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
# Run do-pkg hooks.
|
|
|
|
run_pkg_hooks "do-pkg"
|
2014-03-22 11:31:42 +00:00
|
|
|
|
2014-08-25 20:34:13 +00:00
|
|
|
# Run post-pkg hooks.
|
|
|
|
run_pkg_hooks post-pkg
|
2014-03-22 11:31:42 +00:00
|
|
|
|
|
|
|
exit 0
|