wok view sshfs-fuse/receipt @ rev 13874

linux: CONFIG_SCSI_MULTI_LUN=y
author Richard Dunbar <mojo@slitaz.org>
date Tue Jan 15 00:46:20 2013 +0000 (2013-01-15)
parents 8c4a70e18847
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="SSH Filesystem implemented with FUSE."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="fuse openssh glib"
9 BUILD_DEPENDS="fuse-dev gettext glib glib-dev pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
12 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }