wok annotate sshfs-fuse/receipt @ rev 914

Add: ssh-fuse
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 15 20:14:25 2008 +0000 (2008-06-15)
parents
children a3129d854cf2
rev   line source
pascal@914 1 # SliTaz package receipt.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
pascal@914 4 VERSION="1.9"
pascal@914 5 CATEGORY="system-tools"
pascal@914 6 SHORT_DESC="SSH Filesystem implemented with FUSE."
pascal@914 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@914 8 DEPENDS="fuse openssh"
pascal@914 9 BUILD_DEPENDS="fuse-dev gettext"
pascal@914 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@914 11 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
pascal@914 12 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
pascal@914 13
pascal@914 14 # Rules to configure and make the package.
pascal@914 15 compile_rules()
pascal@914 16 {
pascal@914 17 cd $src
pascal@914 18 ./configure --prefix=/usr \
pascal@914 19 --mandir=/usr/share/man $CONFIGURE_ARGS
pascal@914 20 make
pascal@914 21 make DESTDIR=$PWD/_pkg install
pascal@914 22 }
pascal@914 23
pascal@914 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 25 genpkg_rules()
pascal@914 26 {
pascal@914 27 mkdir -p $fs/usr
pascal@914 28 cp -a $_pkg/usr/* $fs/usr
pascal@914 29 }