# 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.8
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
}
