diff options
author | Hunter Sezen <orbea@fredslev.dk> | 2018-12-29 05:32:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-12-29 05:32:37 +0700 |
commit | 2554b1311435b9f4f33043c67064465f46820903 (patch) | |
tree | 8a4b03de8ddc71cfd71f1c666d49102da36906eb /system/yash/yash.SlackBuild | |
parent | 2f4162df14c644928838c2ffd74c9f16211c4340 (diff) |
system/yash: Updated for version 2.48.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/yash/yash.SlackBuild')
-rw-r--r-- | system/yash/yash.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/system/yash/yash.SlackBuild b/system/yash/yash.SlackBuild index 50f3ee5b2dae1..dd65ca9fafd21 100644 --- a/system/yash/yash.SlackBuild +++ b/system/yash/yash.SlackBuild @@ -24,8 +24,8 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=yash -VERSION=${VERSION:-2.47} -BUILD=${BUILD:-2} +VERSION=${VERSION:-2.48} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -77,13 +77,13 @@ CFLAGS="$SLKCFLAGS" \ --mandir=/usr/man make -make install-strip DESTDIR=$PKG +make install DESTDIR=$PKG mkdir -p $PKG/usr/bin ( cd $PKG/usr/bin ; ln -sf /bin/yash yash ) -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 -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 |