This commit is contained in:
Gwenhael Le Moine 2010-11-16 17:12:34 +07:00
parent 78f209e089
commit 1efbe3ebdf
2 changed files with 5 additions and 4 deletions

View file

@ -7,10 +7,11 @@ upgradepkg /tmp/emacs-trunk*.t?z
mv /tmp/emacs-trunk*.t?z /home/installs/PKGs/
for e in $(find . -type d -maxdepth 1 -not -name UNUSED -not -name . -not -name emacs); do
(cd $e
./$(basename $e).SlackBuild && \
upgradepkg /tmp/$(basename $e)*.t?z && \
mv /tmp/$(basename $e)*.t?z /home/installs/PKGs/
(cd $e
THIS=$(basename $e)
sh $THIS.SlackBuild \
&& upgradepkg /tmp/$THIS*.t?z \
&& mv /tmp/$THIS*.t?z /home/installs/PKGs/
)
done