diff options
Diffstat (limited to 'network/googlecl/googlecl.SlackBuild')
-rw-r--r-- | network/googlecl/googlecl.SlackBuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/network/googlecl/googlecl.SlackBuild b/network/googlecl/googlecl.SlackBuild index 0818209f17..c7ca747ff6 100644 --- a/network/googlecl/googlecl.SlackBuild +++ b/network/googlecl/googlecl.SlackBuild @@ -5,13 +5,13 @@ # Written by Jakob Nylin <jakob[dot]nylin[at]gmail[dot]com> PRGNAM=googlecl -VERSION=${VERSION:-0.9.12} +VERSION=${VERSION:-0.9.15} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -32,20 +32,18 @@ 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 mkdir -p $PKG/usr/man/man1 -gzip -9c man/google.1 > $PKG/usr/man/man1/google.1.gz +gzip -9c docs/man/google.1 > $PKG/usr/man/man1/google.1.gz mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - INSTALL.txt README* changelog \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README* changelog $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |