slackbuilds/e/update-all.sh
2011-07-23 13:00:50 +02:00

20 lines
514 B
Bash
Executable file

#!/bin/sh
if [ ! "x$1" == "x--not-emacs" ]; then
( cd emacs
./emacs.SlackBuild \
&& upgradepkg /tmp/emacs-trunk*.t?z \
&& mv /tmp/emacs-trunk*.t?z /home/installs/PKGs/
)
fi
for i in $(find . -type d -maxdepth 1 -not -name UNUSED -not -name . -not -name emacs); do
(cd $i
THIS=$(basename $i)
sh $THIS.SlackBuild \
&& upgradepkg --install-new /tmp/$THIS*.t?z \
&& mv /tmp/$THIS*.t?z /home/installs/PKGs/
)
done
rm -fr /tmp/{cyco,emacs-*,package-*,ruby-*}