mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
development/icon: Use 'set -e' in SlackBuild.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
parent
2a50573b9a
commit
3e7aa98bad
1 changed files with 4 additions and 2 deletions
|
@ -57,19 +57,21 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
PKGVERSION=$(echo $VERSION | tr -d .)
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-v${PKGVERSION}src
|
||||
tar xvf $CWD/$PRGNAM-v${PKGVERSION}src.tgz || exit 1
|
||||
tar xvf $CWD/$PRGNAM-v${PKGVERSION}src.tgz
|
||||
cd $PRGNAM-v${PKGVERSION}src
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
||||
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# Let's put the package in /opt/icon instead of filling /usr/lib
|
||||
# (and not a '/usr/lib/icon' subdirectory) with icon-related files.
|
||||
|
|
Loading…
Reference in a new issue