wok view sshfs-fuse/receipt @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents f44ef80ff9e2
children 186a8b6ac51e
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
11 WGET_URL="$SF_MIRROR/fuse/$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
32 cp -a $install/usr/bin $fs/usr
33 cp -a $stuff/rsshfs $fs/usr/bin
34 }