opt/sshfs-fuse/Pkgfile

20 lines
525 B
Plaintext

# 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
name=sshfs-fuse
version=3.7.0
release=1
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
sshfs.1)
build() {
cd sshfs-$version
meson build --prefix /usr
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
}