18 lines
483 B
Plaintext
18 lines
483 B
Plaintext
# Description: Remote filesystem in userspace using SSH
|
|
# URL: https://github.com/libfuse/sshfs
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Packager: Jukka Heino, jukka dot heino at gmail dot com
|
|
# Depends on: fuse, glib
|
|
|
|
name=sshfs-fuse
|
|
version=2.9
|
|
release=1
|
|
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.gz)
|
|
|
|
build() {
|
|
cd sshfs-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|