mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
30 lines
447 B
Bash
Executable file
30 lines
447 B
Bash
Executable file
#!/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
|