diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2021-01-27 22:52:17 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-01-30 09:42:18 +0700 |
commit | 26a4eab392d1c0d7c7fa0ed318ab6b38edde7615 (patch) | |
tree | 87afb2ef03ba6f5c2809a31a16f41eadabacb3fb /system | |
parent | a0ed08028568f3b2bebb198995a29c770160e832 (diff) | |
download | slackbuilds-26a4eab392d1c0d7c7fa0ed318ab6b38edde7615.tar.gz |
system/fuse3: Update to version 3.10.1.
also make doc installation optional (frees up 30Mb on install).
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
Signed-off-by: Dominik Drobek <dominik.drobek (at) o2.pl>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/fuse3/README | 5 | ||||
-rw-r--r-- | system/fuse3/fuse3.SlackBuild | 10 | ||||
-rw-r--r-- | system/fuse3/fuse3.info | 8 |
3 files changed, 17 insertions, 6 deletions
diff --git a/system/fuse3/README b/system/fuse3/README index 533ab44440..fedc4c62b9 100644 --- a/system/fuse3/README +++ b/system/fuse3/README @@ -8,3 +8,8 @@ repository). libfuse provides the reference implementation for communicating with the FUSE kernel module. This ought not collide with the "fuse" package in stock slackware install. + +The package can optionally install extensive developer documentation. If this +is needed, run the SlackBuild like this: + +FUSE3_DEVDOCS=yes ./fuse3.SlackBuild diff --git a/system/fuse3/fuse3.SlackBuild b/system/fuse3/fuse3.SlackBuild index 5b75bae99c..da4fbda772 100644 --- a/system/fuse3/fuse3.SlackBuild +++ b/system/fuse3/fuse3.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=fuse3 -VERSION=${VERSION:-3.9.0} +VERSION=${VERSION:-3.10.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -57,6 +57,8 @@ else LIBDIRSUFFIX="" fi +FUSE3_DEVDOCS=${FUSE3_DEVDOCS:-no} + set -e rm -rf $PKG @@ -88,8 +90,12 @@ 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 +if [ "$FUSE3_DEVDOCS" = "yes" ]; then + cp -a doc/ example/ $PKG/usr/doc/$PRGNAM-$VERSION +fi + cp -a \ - README.md LICENSE LGPL2.txt GPL2.txt doc/ example/ \ + README.md LICENSE LGPL2.txt GPL2.txt \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/system/fuse3/fuse3.info b/system/fuse3/fuse3.info index de334d4735..25599ccf6a 100644 --- a/system/fuse3/fuse3.info +++ b/system/fuse3/fuse3.info @@ -1,10 +1,10 @@ PRGNAM="fuse3" -VERSION="3.9.0" +VERSION="3.10.1" HOMEPAGE="https://github.com/libfuse/libfuse" -DOWNLOAD="https://github.com/libfuse/libfuse/releases/download/fuse-3.9.0/fuse-3.9.0.tar.xz" -MD5SUM="5dc2be21c0d06c7eace340996e8a37e2" +DOWNLOAD="https://github.com/libfuse/libfuse/releases/download/fuse-3.10.1/fuse-3.10.1.tar.xz" +MD5SUM="e973012119e98b048307558271b5b296" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="meson" MAINTAINER="Vincent Batts" -EMAIL="vbatts@hashbanghbash.com" +EMAIL="vbatts@hashbangbash.com" |