790202ddbd
Those helpers were just setting up some extra functions that can be used on templates, and this can be done already via environment, so let's remove the helpers completely.
73 lines
1.6 KiB
Bash
Executable File
73 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# vim: set ts=4 sw=4 et:
|
|
#
|
|
# Passed arguments:
|
|
# $1 - pkgname [REQUIRED]
|
|
# $2 - cross target [OPTIONAL]
|
|
|
|
if [ $# -lt 1 -o $# -gt 2 ]; then
|
|
echo "$(basename $0): invalid number of arguments: pkgname [cross-target]"
|
|
exit 1
|
|
fi
|
|
|
|
PKGNAME="$1"
|
|
XBPS_CROSS_BUILD="$2"
|
|
|
|
. $XBPS_SHUTILSDIR/common.sh
|
|
|
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
|
|
|
for f in $XBPS_COMMONDIR/environment/extract/*.sh; do
|
|
source_file "$f"
|
|
done
|
|
|
|
XBPS_EXTRACT_DONE="$wrksrc/.xbps_extract_done"
|
|
|
|
if [ -f $XBPS_EXTRACT_DONE ]; then
|
|
exit 0
|
|
fi
|
|
|
|
# Run pre-extract hooks
|
|
run_pkg_hooks pre-extract
|
|
|
|
# If template defines pre_extract(), use it.
|
|
if declare -f pre_extract >/dev/null; then
|
|
run_func pre_extract
|
|
fi
|
|
|
|
# If template defines do_extract() use it rather than the hooks.
|
|
if declare -f do_extract >/dev/null; then
|
|
[ ! -d "$wrksrc" ] && mkdir -p $wrksrc
|
|
cd $wrksrc
|
|
run_func do_extract
|
|
else
|
|
if [ -n "$build_style" ]; then
|
|
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
|
|
fi
|
|
# If the build_style script declares do_extract(), use it rather than hooks.
|
|
if declare -f do_extract >/dev/null; then
|
|
run_func do_extract
|
|
else
|
|
# Run do-extract hooks
|
|
run_pkg_hooks "do-extract"
|
|
fi
|
|
fi
|
|
|
|
touch -f $XBPS_EXTRACT_DONE
|
|
|
|
[ -d $wrksrc ] && cd $wrksrc
|
|
|
|
# If template defines post_extract(), use it.
|
|
if declare -f post_extract >/dev/null; then
|
|
run_func post_extract
|
|
fi
|
|
|
|
# Run post-extract hooks
|
|
run_pkg_hooks post-extract
|
|
|
|
exit 0
|