diff options
author | Andrew Rowland <darowland@ieee.org> | 2015-01-24 00:26:38 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-24 00:26:38 +0700 |
commit | c874c3b0bde9611b821a518d75a68eb1b4019d23 (patch) | |
tree | 8448e5e5c72377336e51239d266d886d3347775c /development/git-cola/git-cola.SlackBuild | |
parent | 563b4a8f902b7f050d5ca557e35e5f6d8e1465f1 (diff) | |
download | slackbuilds-c874c3b0bde9611b821a518d75a68eb1b4019d23.tar.gz |
development/git-cola: Updated for version 2.1.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/git-cola/git-cola.SlackBuild')
-rw-r--r-- | development/git-cola/git-cola.SlackBuild | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/development/git-cola/git-cola.SlackBuild b/development/git-cola/git-cola.SlackBuild index 4d1ce85fd9..8bd05e12f9 100644 --- a/development/git-cola/git-cola.SlackBuild +++ b/development/git-cola/git-cola.SlackBuild @@ -5,7 +5,7 @@ # Written by Andrew Rowland <darowland@ieee.org> PRGNAM=git-cola -VERSION=${VERSION:-1.8.2} +VERSION=${VERSION:-2.1.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,10 +46,10 @@ tar xvf $CWD/$PRGNAM-$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 \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; python setup.py install --root=$PKG @@ -57,9 +57,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - COPYING COPYRIGHT README.md \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING COPYRIGHT README.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |