2006-02-23 15:26:10 +00: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
|
2023-10-12 10:08:33 +02:00
|
|
|
# Optional: python3-docutils
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=sshfs-fuse
|
2023-10-12 10:08:33 +02:00
|
|
|
version=3.7.4a
|
2016-06-21 12:18:15 +02:00
|
|
|
release=1
|
2023-10-12 10:08:33 +02:00
|
|
|
source=(https://github.com/deadbeefsociety/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2021-06-08 11:58:55 +02:00
|
|
|
meson setup build sshfs-$version \
|
|
|
|
--prefix=/usr \
|
2023-10-12 10:08:33 +02:00
|
|
|
--buildtype=release \
|
|
|
|
--wrap-mode nodownload \
|
|
|
|
-D b_lto=true \
|
|
|
|
-D b_pie=true
|
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
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|