blob: 3df9534f48969acd27672c45ecb0fbd1c52b106b (
plain)
1 # Description: Remote filesystem in userspace using SSH
2 # URL: https://github.com/libfuse/sshfs
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: fuse3 glib
5
6 name=sshfs-fuse
7 version=3.7.2
8 release=1
9 source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
10 sshfs.1)
11
12 build() {
13 meson setup build sshfs-$version \
14 --prefix=/usr \
15 --buildtype=release
16
17 meson compile -C build -j ${JOBS:-1}
18 DESTDIR=$PKG meson install -C build
19
20 install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
21 }
|