diff options
Diffstat (limited to 'academic/genometools/genometools.SlackBuild')
-rw-r--r-- | academic/genometools/genometools.SlackBuild | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/academic/genometools/genometools.SlackBuild b/academic/genometools/genometools.SlackBuild index f4af4db0f91fa..0814b7dc9e221 100644 --- a/academic/genometools/genometools.SlackBuild +++ b/academic/genometools/genometools.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for genometools -# Copyright 2014-2018 Petar Petrov slackalaxy@gmail.com +# Copyright 2014-2020 Petar Petrov slackalaxy@gmail.com # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=genometools -VERSION=${VERSION:-1.5.10} +VERSION=${VERSION:-1.6.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -72,9 +72,10 @@ 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 {} \; -# Fix library path +# Fix library and man pages path sed -i "s:lib/libgenometools:lib${LIBDIRSUFFIX}/libgenometools:g" Makefile sed -i "s:\$(prefix)/lib:\$(prefix)/lib${LIBDIRSUFFIX}:g" Makefile +sed -i "s:/share/man/:/man/:g" Makefile CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -90,10 +91,6 @@ cd gtpython python setup.py install --root=$PKG cd .. -# We don't need this -rm -rf $PKG/usr/bin/genometools-config -rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/libgenometools.a - 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 |