22 lines
601 B
Plaintext
22 lines
601 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: fuse3 glib
|
|
|
|
name=sshfs-fuse
|
|
version=3.3.2
|
|
release=1
|
|
source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
|
|
sshfs.1)
|
|
|
|
build() {
|
|
cd sshfs-$version
|
|
|
|
mkdir build ; cd build
|
|
meson .. --prefix /usr
|
|
DESTDIR=$PKG ninja -j ${JOBS:-1} install
|
|
|
|
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
|
|
}
|