2006-02-23 15:26:10 +00:00
|
|
|
# Description: Remote filesystem in userspace using SSH
|
2015-12-23 15:39:12 +01:00
|
|
|
# URL: https://github.com/libfuse/sshfs
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2006-10-03 09:41:34 +00:00
|
|
|
# Packager: Jukka Heino, jukka dot heino at gmail dot com
|
2017-08-07 10:52:38 +02:00
|
|
|
# Depends on: fuse3 glib
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=sshfs-fuse
|
2017-10-27 17:59:47 +02:00
|
|
|
version=3.3.1
|
2016-06-21 12:18:15 +02:00
|
|
|
release=1
|
2017-09-26 11:45:34 +02:00
|
|
|
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
|
|
|
|
sshfs.1)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2016-06-21 12:18:15 +02:00
|
|
|
cd sshfs-$version
|
2017-09-26 11:45:34 +02:00
|
|
|
|
|
|
|
mkdir build ; cd build
|
|
|
|
meson .. --prefix /usr
|
2017-10-27 19:41:31 +02:00
|
|
|
DESTDIR=$PKG ninja -j ${JOBS:-1} install
|
2017-09-26 11:45:34 +02:00
|
|
|
|
2017-10-27 17:59:47 +02:00
|
|
|
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|