desktop/Vanilla-DMZ: Miscellaneous cleanups

Move a code block that reduces package size to a better location which
allows using the unmodified chmod boilerplate as a bonus. Remove a
bashism of brace expansion which allows moving the separate mkdirs to a
better location as a bonus.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
slakmagik 2011-01-28 22:57:51 -05:00 committed by Robby Workman
parent ad832f6937
commit 3d3bf81d73
1 changed files with 16 additions and 16 deletions

View File

@ -24,28 +24,28 @@ cd $TMP
rm -rf $PRGNAM
tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2
cd $PRGNAM
# cut the size of the package in half
( cd cursors
md5sum * | sort -r | while read SUM FILE; do
if [ "$OLD_SUM" = $SUM ]; then
ln -sf $OLD_FILE $FILE
else
OLD_SUM=$SUM
OLD_FILE=$FILE
fi
done )
chown -R root:root .
# we need to test for links here because -perm 777 will find them and chmod
# will chmod their targets 755 when they should be 644
find . ! -type l \( \
find . \
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
-exec chmod 755 {} \; -o \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 \
-o -perm 400 \) -exec chmod 644 {} \; \)
-o -perm 400 \) -exec chmod 644 {} \;
mkdir -p $PKG/usr/{share/icons/$PRGNAM,doc/$PRGNAM-$VERSION}
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
mv COPYING $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# cut the size of the package in half
( cd cursors
md5sum * | sort -r | while read SUM FILE; do
if [ "$OLD_SUM" = $SUM ]; then
ln -sf $OLD_FILE $FILE
else
OLD_SUM=$SUM
OLD_FILE=$FILE
fi
done )
mkdir -p $PKG/usr/share/icons
mv $TMP/$PRGNAM $PKG/usr/share/icons/
mkdir -p $PKG/install