diff options
author | Renato Martini <renato@renatomartini.net> | 2013-10-29 08:34:50 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-10-29 08:34:50 -0500 |
commit | 023f57bb35276f028693ac884e7ac5bd7ab9f023 (patch) | |
tree | 8d5184e8497756b5e988f88e3296d7514c120abe /system/whowatch/whowatch.SlackBuild | |
parent | 5cb7ea080752a8bccae5acffa120302b435932fd (diff) | |
download | slackbuilds-023f57bb35276f028693ac884e7ac5bd7ab9f023.tar.gz |
system/whowatch: Updated for version 1.6.1 (+newmaintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/whowatch/whowatch.SlackBuild')
-rw-r--r-- | system/whowatch/whowatch.SlackBuild | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/system/whowatch/whowatch.SlackBuild b/system/whowatch/whowatch.SlackBuild index 12db61279d..679fb1a063 100644 --- a/system/whowatch/whowatch.SlackBuild +++ b/system/whowatch/whowatch.SlackBuild @@ -1,7 +1,9 @@ #!/bin/sh -# Slackware build script for Whowatch +# Slackware build script for whowatch + # Copyright 2009 David Woodfall <info@davidwoodfall.co.uk> +# Copyright 2009-2012 Renato Martini, renatomartini.net, Brazil # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,16 +24,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=whowatch -VERSION=${VERSION:-1.4} -BUILD=${BUILD:-2} +VERSION=${VERSION:-1.6.1} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -55,7 +55,7 @@ else LIBDIRSUFFIX="" fi -set -e +set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -63,17 +63,10 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION -cat $CWD/process.diff | patch -p1 - 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 {} \; +chmod -R u+w,go+r-w,a-s . CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ @@ -83,14 +76,15 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux make -mkdir -p $PKG/usr/bin -cp whowatch $PKG/usr/bin/. +make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +gzip -9 $PKG/usr/man/man?/*.? + mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp README COPYING KEYS $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README NEWS PLUGINS.readme AUTHORS ChangeLog $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |