wok-next view sshfs-fuse/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 829568d90a2a
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sshfs-fuse"
4 VERSION="3.7.0"
5 CATEGORY="system-tools"
6 TAGS="ssh"
7 SHORT_DESC="SSH Filesystem implemented with FUSE"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="https://github.com/libfuse/sshfs"
12 TARBALL="sshfs-$VERSION.tar.xz"
13 WGET_URL="https://github.com/libfuse/sshfs/releases/download/sshfs-$VERSION/$TARBALL"
15 BUILD_DEPENDS="coreutils-file-special fuse3-dev glib-dev meson ninja"
16 # gettext-dev"
17 # coreutils-file-special for ln option --relative
19 compile_rules()
20 {
21 mkdir _build &&
22 meson _build &&
23 ninja -C _build &&
24 ninja -C _build install
25 }
27 genpkg_rules()
28 {
29 copy @std
31 PROVIDE="rsshfs sshfs"
32 DEPENDS="fuse3 glib openssh"
33 }