wok view sshfs-fuse/receipt @ rev 19627

Up libssh2 (1.8.0), sshfs-fuse (2.8) again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 12 10:25:29 2017 +0100 (2017-01-12)
parents 186a8b6ac51e
children 40ec0fa2f1d5
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 autoconf automake libtool"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 libtoolize --force
23 aclocal
24 autoheader
25 automake --force-missing --add-missing
26 autoconf
27 ./configure --prefix=/usr \
28 --mandir=/usr/share/man $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr $install/usr/share/doc
37 cp -a $install/usr/bin $fs/usr
38 cp -a $stuff/rsshfs $fs/usr/bin
39 cp $src/FAQ* $install/usr/share/doc
40 }