Added IanJBs brute-builder

This commit is contained in:
root 2010-02-18 04:51:45 -08:00
parent 2c982ff997
commit 52491650e2

30
scripts/recursive-builder Executable file
View file

@ -0,0 +1,30 @@
#!/bin/sh
# Set me to where you want packages
cd /media/usb/pkg/extra
echo $1
pacman -Ssq $1
if [ $? = 0 ]
then
{
echo $1 "already exists"
}
else
{
if [ ! -d ./$1 ]
then
{
cp -r /var/abs/extra/$1 .
# You might want to change me too
}
fi
cd $1
f=`find . -name *.pkg.tar*`
echo $f
if [ -z $f ]
then
echo $1
makepkg --ignorearch --asroot --clean --syncdeps --noconfirm --rmdeps 2> $1-`date +%s`.log
fi
}
fi