summaryrefslogtreecommitdiff
path: root/sshfs-fuse/Pkgfile
blob: 160e27e2361b475d348a1278a49a6e0c0afd8b15 (plain)
    1 # Description: Remote filesystem in userspace using SSH
    2 # URL:         https://github.com/libfuse/sshfs 
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  fuse3 glib
    5 
    6 name=sshfs-fuse
    7 version=3.7.1
    8 release=1
    9 source=(https://github.com/libfuse/sshfs/releases/download/sshfs-$version/sshfs-$version.tar.xz
   10         sshfs.1)
   11 
   12 build() {
   13     meson setup build sshfs-$version \
   14         --prefix=/usr \
   15         --buildtype=release
   16 
   17     meson compile -C build -j ${JOBS:-1}
   18     DESTDIR=$PKG meson install -C build
   19 
   20     install -D -m 0644 $SRC/sshfs.1 $PKG/usr/share/man/man1/sshfs.1
   21 }

Generated by cgit