wok view sshfs-fuse/receipt @ rev 10164

Up: ruby-gtk2 to 0.90.8.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 20:14:55 2011 +0000 (2011-05-20)
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 }