diff options
author | Ryan P.C. McQuen <ryanpcmcquen@gmail.com> | 2014-05-25 12:17:34 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-05-25 12:17:34 +0700 |
commit | 44f97d284df101689c3e7354131c1fb65ff18a7f (patch) | |
tree | ce3d331e30a8820e027c40f24220314317a94571 /development/ninja-ide/ninja-ide.SlackBuild | |
parent | 6ee5954f665977598e7ac6b57b57ae6ff7e26deb (diff) |
development/ninja-ide: Updated for version 2.3 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/ninja-ide/ninja-ide.SlackBuild')
-rw-r--r-- | development/ninja-ide/ninja-ide.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/development/ninja-ide/ninja-ide.SlackBuild b/development/ninja-ide/ninja-ide.SlackBuild index d3328cdf8f3bb..829d37056387f 100644 --- a/development/ninja-ide/ninja-ide.SlackBuild +++ b/development/ninja-ide/ninja-ide.SlackBuild @@ -3,6 +3,7 @@ # Slackware build script for ninja-ide # Copyright 2012 Binh Nguyen <binhvng@gmail.com> +# Copyright 2014 Ryan P.C. McQuen, WA, ryan.q@linux.com # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=ninja-ide -VERSION=${VERSION:-2.1.1} +VERSION=${VERSION:-2.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,12 +47,12 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM -unzip $CWD/$PRGNAM-v$VERSION.zip -cd $PRGNAM +tar xvf $CWD/v$VERSION.tar.gz +cd $PRGNAM-$VERSION 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 \ + -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 {} \; |