blob: d39d2ab31c0f2814b4625e69801b9a1d81ffd37a (
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.3.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 mkdir build ; cd build
17 meson .. --prefix /usr
18 DESTDIR=$PKG ninja -j ${JOBS:-1} install
19
20 install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
21 }
|