wok view sshfs-fuse/receipt @ rev 19626

Up libssh2 (1.8.0), sshfs-fuse (2.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 12 09:42:44 2017 +0100 (2017-01-12)
parents 442615e1f82c
children 22244c3bcd35
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.8"
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="https://github.com/libfuse/sshfs/archive/$TARBALL"
12 HOST_ARCH="i486 arm"
13 PROVIDE="rsshfs sshfs"
14 TAGS="ssh"
16 DEPENDS="fuse openssh sftp-server glib"
17 BUILD_DEPENDS="fuse-dev gettext glib-dev pkg-config"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure --prefix=/usr \
23 --mandir=/usr/share/man $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr $install/usr/share/doc
32 cp -a $install/usr/bin $fs/usr
33 cp -a $stuff/rsshfs $fs/usr/bin
34 cp $src/FAQ* $install/usr/share/doc
35 }