diff options
author | Iskar Enev <iskar.enev@gmail.com> | 2010-05-12 17:43:59 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:43:59 +0200 |
commit | 4c6d591fd2834ea6fd23a7641e1bf80e90ee08c2 (patch) | |
tree | a598643910ebf0297ca89c70fbaa9a558785dfe4 /network/nicotine-plus/nicotine-plus.SlackBuild | |
parent | ba227da84ad1fc6ff7acf46df072649bd54086f1 (diff) |
network/nicotine-plus: Updated for version 1.2.10
Diffstat (limited to 'network/nicotine-plus/nicotine-plus.SlackBuild')
-rw-r--r-- | network/nicotine-plus/nicotine-plus.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/network/nicotine-plus/nicotine-plus.SlackBuild b/network/nicotine-plus/nicotine-plus.SlackBuild index 72d72742c189a..582311ddd9a1d 100644 --- a/network/nicotine-plus/nicotine-plus.SlackBuild +++ b/network/nicotine-plus/nicotine-plus.SlackBuild @@ -1,16 +1,15 @@ #!/bin/sh - # Slackware build script for nicotine+ # Written by Iskar Enev <iskar.enev[@]gmail.com> - # Modified by the SlackBuilds.org project PRGNAM=nicotine+ NAME=nicotine -VERSION=1.2.9 +VERSION=1.2.10 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -27,7 +26,11 @@ rm -rf $PRGNAM-$VERSION tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 cd $PRGNAM-$VERSION || exit 1 chown -R root:root . -chmod -R u+w,go+r-w,a-s . +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 {} \; # Tray icon has to be compiled first if [ "$TRAYICON" = "YES" ]; then |