blob: f7b9b8f36e1bed7676d2eabc7d3b9c21001b1a3b (
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 # Packager: Jukka Heino, jukka dot heino at gmail dot com
5 # Depends on: fuse3 glib
6
7 name=sshfs-fuse
8 version=3.5.1
9 release=1
10 source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
11 sshfs.1)
12
13 build() {
14 cd sshfs-$version
15
16 meson build --prefix /usr
17 DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
18
19 install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
20 }
|