diff options
author | Johannes Schoepfer <slackbuilds@schoepfer.info> | 2019-07-20 08:05:59 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-07-20 08:05:59 +0700 |
commit | 1fb9c141e9101b8f86aaee361f819c42059ca58a (patch) | |
tree | 6f0062db9fbf63d7e6cc90dd9924497bc6d42590 /desktop/herbstluftwm/herbstluftwm.SlackBuild | |
parent | 45fd625951c3927799e3ef175fac881f1d3dfe58 (diff) |
desktop/herbstluftwm: Updated for version 0.7.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/herbstluftwm/herbstluftwm.SlackBuild')
-rw-r--r-- | desktop/herbstluftwm/herbstluftwm.SlackBuild | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/desktop/herbstluftwm/herbstluftwm.SlackBuild b/desktop/herbstluftwm/herbstluftwm.SlackBuild index 4481ee16a6242..7ab841f523c0f 100644 --- a/desktop/herbstluftwm/herbstluftwm.SlackBuild +++ b/desktop/herbstluftwm/herbstluftwm.SlackBuild @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=herbstluftwm -VERSION=${VERSION:-0.7.1} +VERSION=${VERSION:-0.7.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -70,15 +70,12 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# make make PREFIX=/usr MANDIR=/usr/man DOCDIR=/usr/doc/$PRGNAM-$VERSION || exit 1 make install DESTDIR=$PKG PREFIX=/usr MANDIR=/usr/man DOCDIR=/usr/doc/$PRGNAM-$VERSION -# strip: find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true -# gzip manpages: 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 |