diff options
Diffstat (limited to 'libraries/fcft/fcft.SlackBuild')
-rw-r--r-- | libraries/fcft/fcft.SlackBuild | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/libraries/fcft/fcft.SlackBuild b/libraries/fcft/fcft.SlackBuild index 33f23dfea6421..c9b6add6add42 100644 --- a/libraries/fcft/fcft.SlackBuild +++ b/libraries/fcft/fcft.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for fcft -# Copyright 2022 Damian Perticone Berisso,Argentina +# Copyright 2022 Damian Perticone, Berisso,Argentina # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=fcft -VERSION=${VERSION:-3.0.1} +VERSION=${VERSION:-3.1.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -93,7 +93,7 @@ cd build -Ddocs=enabled \ -Dgrapheme-shaping=enabled \ -Drun-shaping=enabled \ - -Dtest-text-shaping=false \ + -Dtest-text-shaping=true \ -Dexamples=false \ "${NINJA:=ninja}" @@ -103,19 +103,12 @@ rm -r $PKG/usr/share cd .. -rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la - 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 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 -find $PKG -name perllocal.pod \ - -o -name ".packlist" \ - -o -name "*.bs" \ - | xargs rm -f - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a CHANGELOG.md LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |