Added some simple scripts from [games] repo.

This commit is contained in:
chaves 2011-01-03 04:52:26 +00:00
parent 1c2a497a2a
commit 09dd99e6ef
2 changed files with 15 additions and 0 deletions

5
compile.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
cd $1
../makepkg -sr
rm -r pkg src *.pkg.*
cd ..

10
install.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
PACKAGE_LIST=""
for i in $*
do
PACKAGE_LIST=$PACKAGE_LIST" ./_repo/local/"$i"*"
done
sudo pacman -U $PACKAGE_LIST