diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2013-11-17 09:29:16 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-16 22:56:54 -0600 |
commit | 73173831b816207d9b2ecfb163408dd58b4c2ae2 (patch) | |
tree | 2b4a2d0cd0620c68e6bf498d404c956a7aab9952 /libraries/libsodium/libsodium.SlackBuild | |
parent | 5c4f36c5e1982acc0f79522118952a5f59a8a216 (diff) | |
download | slackbuilds-73173831b816207d9b2ecfb163408dd58b4c2ae2.tar.gz |
libraries/libsodium: Updated for version 0.4.5
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/libsodium/libsodium.SlackBuild')
-rw-r--r-- | libraries/libsodium/libsodium.SlackBuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/libsodium/libsodium.SlackBuild b/libraries/libsodium/libsodium.SlackBuild index df062492ec..1984a7af53 100644 --- a/libraries/libsodium/libsodium.SlackBuild +++ b/libraries/libsodium/libsodium.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libsodium -VERSION=${VERSION:-0.4.2} +VERSION=${VERSION:-0.4.5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -63,11 +63,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -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 {} \; +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 {} \; CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -86,7 +86,7 @@ make install-strip DESTDIR=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ - AUTHORS COPYING INSTALL NEWS README THANKS \ + AUTHORS README THANKS \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |