opt/sshfs-fuse/Pkgfile

22 lines
550 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Remote filesystem in userspace using SSH
2021-06-08 11:58:55 +02:00
# URL: https://github.com/libfuse/sshfs
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: fuse3 glib
2006-02-23 16:26:10 +01:00
name=sshfs-fuse
2021-06-08 11:58:55 +02:00
version=3.7.2
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
2021-06-08 11:58:55 +02:00
sshfs.1)
2006-02-23 16:26:10 +01:00
build() {
2021-06-08 11:58:55 +02:00
meson setup build sshfs-$version \
--prefix=/usr \
--buildtype=release
2017-09-26 11:45:34 +02:00
2021-06-08 11:58:55 +02:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2017-09-26 11:45:34 +02:00
2021-06-08 11:58:55 +02:00
install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
2006-02-23 16:26:10 +01:00
}