slackbuilds/e/update-all.sh

19 lines
453 B
Bash
Raw Normal View History

#!/bin/sh
( cd emacs
./emacs.SlackBuild
)
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
2010-11-16 11:12:34 +01:00
(cd $e
THIS=$(basename $e)
sh $THIS.SlackBuild \
2010-11-20 03:26:41 +01:00
&& upgradepkg --install-new /tmp/$THIS*.t?z \
2010-11-16 11:12:34 +01:00
&& mv /tmp/$THIS*.t?z /home/installs/PKGs/
)
done
rm -fr /tmp/{cyco,emacs-*,package-*,ruby-*}