b8044ce629
Also use nproc(1) directly and remove FTP_RETRIES.
20 lines
306 B
Bash
Executable file
20 lines
306 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# build.sh
|
|
|
|
if [ "$1" != "$2" ]; then
|
|
arch="-a $2"
|
|
fi
|
|
|
|
if [ "$3" = 1 ]; then
|
|
test="-Q"
|
|
fi
|
|
|
|
PKGS=$(/hostrepo/xbps-src sort-dependencies $(cat /tmp/templates))
|
|
|
|
for pkg in ${PKGS}; do
|
|
/hostrepo/xbps-src -j$(nproc) -H "$HOME"/hostdir $arch $test pkg "$pkg"
|
|
[ $? -eq 1 ] && exit 1
|
|
done
|
|
|
|
exit 0
|