blob: f81caef292c2b5f509907d6af914ddf4e7d9cf9d (
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: fuse, glib
6
7 name=sshfs-fuse
8 version=2.8
9 release=1
10 source=(https://github.com/libfuse/sshfs/releases/download/sshfs_$version/sshfs-$version.tar.gz)
11
12 build() {
13 cd sshfs-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|