diff options
Diffstat (limited to 'desktop/yad/yad.SlackBuild')
-rw-r--r-- | desktop/yad/yad.SlackBuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/desktop/yad/yad.SlackBuild b/desktop/yad/yad.SlackBuild index cd6b847473..5b7e3acfab 100644 --- a/desktop/yad/yad.SlackBuild +++ b/desktop/yad/yad.SlackBuild @@ -5,7 +5,7 @@ # Written by Charles (SlackBuilds@catcons.co.uk) PRGNAM=yad -VERSION=${VERSION:-0.5.2} +VERSION=${VERSION:-0.17.1.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -36,7 +36,7 @@ else LIBDIRSUFFIX="" fi -set -e # Exit on most errors +set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -51,9 +51,6 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Update notification.c with the SVN r158 version -cp $CWD/notification.c.r158 src/notification.c - CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -66,7 +63,7 @@ CXXFLAGS="$SLKCFLAGS" \ --build=$ARCH-slackware-linux make -make install DESTDIR=$PKG +make install-strip DESTDIR=$PKG find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done |