wok view sshfs-fuse/receipt @ rev 21097

Add afuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 18 11:50:02 2019 +0100 (2019-03-18)
parents 86790a278e70
children daaaf5face8a
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="sshfs-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/libfuse/sshfs"
11 WGET_URL="$WEB_SITE/releases/download/sshfs-$VERSION/$TARBALL"
12 HOST_ARCH="i486 arm"
13 PROVIDE="rsshfs sshfs"
14 TAGS="ssh"
16 DEPENDS="fuse openssh sftp-server glib"
17 SUGGESTED="afuse"
18 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config autoconf automake libtool"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 libtoolize --force
24 aclocal
25 autoheader
26 automake --force-missing --add-missing
27 autoconf
28 ./configure --prefix=/usr \
29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 cp -a $stuff/rsshfs $fs/usr/bin
40 }