23 lines
377 B
Bash
Executable file
23 lines
377 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# build.sh
|
|
|
|
if [ "$1" != "$2" ]; then
|
|
arch="-a $2"
|
|
fi
|
|
|
|
PKGS=$(/hostrepo/xbps-src sort-dependencies $(cat /tmp/templates))
|
|
|
|
NPROCS=1
|
|
if [ -r /proc/cpuinfo ]; then
|
|
NPROCS=$(grep ^proc /proc/cpuinfo|wc -l)
|
|
fi
|
|
|
|
export FTP_RETRIES=10
|
|
|
|
for pkg in ${PKGS}; do
|
|
/hostrepo/xbps-src -j$NPROCS -H "$HOME"/hostdir $arch pkg "$pkg"
|
|
[ $? -eq 1 ] && exit 1
|
|
done
|
|
|
|
exit 0
|