wok view sshfs-fuse/receipt @ rev 2713

Up ffmpeg-dev (18664)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 23 09:39:12 2009 +0200 (2009-04-23)
parents 52dc4b48ed81
children 4082600461a0
line source
1 # SliTaz package receipt.
3 PACKAGE="sshfs-fuse"
4 VERSION="2.0"
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"
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 }