mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 00:48:06 +01:00
39 lines
759 B
Bash
39 lines
759 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# vim: set ts=4 sw=4 et:
|
||
|
#
|
||
|
# Passed arguments:
|
||
|
# $1 - pkgname to build [REQUIRED]
|
||
|
# $2 - cross target [OPTIONAL]
|
||
|
|
||
|
if [ $# -lt 1 -o $# -gt 2 ]; then
|
||
|
echo "${0##*/}: invalid number of arguments: pkgname [cross-target]"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
PKGNAME="$1"
|
||
|
XBPS_CROSS_BUILD="$2"
|
||
|
|
||
|
for f in $XBPS_SHUTILSDIR/*.sh; do
|
||
|
. $f
|
||
|
done
|
||
|
|
||
|
setup_pkg "$PKGNAME" $XBPS_CROSS_BUILD
|
||
|
|
||
|
XBPS_BUILD_DONE="${XBPS_STATEDIR}/${sourcepkg}_${XBPS_CROSS_BUILD}_build_done"
|
||
|
|
||
|
if [ -f $XBPS_BUILD_DONE -a -z "$XBPS_BUILD_FORCEMODE" ] ||
|
||
|
[ -f $XBPS_BUILD_DONE -a -n "$XBPS_BUILD_FORCEMODE" -a $XBPS_TARGET != "build" ]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
for f in $XBPS_COMMONDIR/environment/build/*.sh; do
|
||
|
source_file "$f"
|
||
|
done
|
||
|
|
||
|
run_step build optional
|
||
|
|
||
|
touch -f $XBPS_BUILD_DONE
|
||
|
|
||
|
exit 0
|