sshfs-fuse: update to 3.7.2

This commit is contained in:
Juergen Daubert 2021-06-08 11:58:55 +02:00
parent edffba739e
commit b628d06346
2 changed files with 14 additions and 14 deletions

@ -1,6 +1,6 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/VFAhjhOo7gPcWtdelDIK/wgkicdM+0lMLhxKbk27if/vtoQb9/HCOnGR438W8JOtXq7uTJX4CmCVqASLvOlCg0=
SHA256 (Pkgfile) = bccfeba20f3a4365c8b7bda27eb7245fcc104718ff451c1f457f3115fadeb558
RWSE3ohX2g5d/aCQSQ3UuBTNyTTOtQHV6wId+xcI5Psceem8z11YwZvouYwhxdI6tM+tbL2Cnd2sPkdp1H/SPHWnlTM5t8AXZgM=
SHA256 (Pkgfile) = f470d6d6524b3bd47b3c2aca6a4babacd979a4f68e7aafd2aa1d332daf4d406c
SHA256 (.footprint) = 55809a24ab7e2ee0ae7278618a24a3532806af781f07c1f9c651d089933d2527
SHA256 (sshfs-3.7.1.tar.xz) = fe5d3436d61b46974889e0c4515899c21a9d67851e3793c209989f72353d7750
SHA256 (sshfs-3.7.2.tar.xz) = 1c596d42724d13aeba9f49ee127b8ef2fdeb813e25c6018f92d0c9ec4754fa2d
SHA256 (sshfs.1) = 9b8b4bf6f9d4c1e9685ed583ec919e5ef34da51ad4c9da7c55f1ae6d720f450f

@ -1,21 +1,21 @@
# Description: Remote filesystem in userspace using SSH
# URL: https://github.com/libfuse/sshfs
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: fuse3 glib
# URL: https://github.com/libfuse/sshfs
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: fuse3 glib
name=sshfs-fuse
version=3.7.1
version=3.7.2
release=1
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
sshfs.1)
sshfs.1)
build() {
meson setup build sshfs-$version \
--prefix=/usr \
--buildtype=release
meson setup build sshfs-$version \
--prefix=/usr \
--buildtype=release
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
}