diff options
author | brobr <sborg63@disroot.org> | 2024-01-27 18:50:01 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-01-30 07:49:53 +0700 |
commit | 4f68d2ced96491dd2448ee2ad8ce4c30209a9cd3 (patch) | |
tree | ffcf3868657bb0a6e7afc842364b1f055bc2111d /libraries/htslib/htslib.SlackBuild | |
parent | b390b808c07a70106aa3c3832ff565b27899600e (diff) |
libraries/htslib: Upgrade to version 1.19.1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/htslib/htslib.SlackBuild')
-rw-r--r-- | libraries/htslib/htslib.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libraries/htslib/htslib.SlackBuild b/libraries/htslib/htslib.SlackBuild index 0157d69f18..b27ea38502 100644 --- a/libraries/htslib/htslib.SlackBuild +++ b/libraries/htslib/htslib.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for htslib -# Copyright 2018-2023 Rob van Nues # All rights reserved. +# Copyright 2018-2024 Rob van Nues # All rights reserved. # # Redistribution and use of this script, with or without modification, is # permitted provided that the following conditions are met: @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=htslib -VERSION=${VERSION:-1.19} +VERSION=${VERSION:-1.19.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -37,9 +37,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -110,9 +107,7 @@ 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - README LICENSE INSTALL NEWS \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README LICENSE NEWS $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |