wok annotate sshfs-fuse/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents 4082600461a0
children c02b96788856
rev   line source
pascal@914 1 # SliTaz package receipt.
pascal@914 2
pascal@914 3 PACKAGE="sshfs-fuse"
slaxemulator@6275 4 VERSION="2.2"
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@15000 8 LICENSE="GPL2"
pascal@914 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@914 10 WEB_SITE="http://fuse.sourceforge.net/sshfs.html"
pascal@914 11 WGET_URL="$SF_MIRROR/fuse/$TARBALL"
pascal@914 12
pascal@15000 13 DEPENDS="fuse openssh glib"
pascal@15000 14 BUILD_DEPENDS="fuse-dev gettext glib glib-dev pkg-config"
pascal@15000 15
pascal@914 16 # Rules to configure and make the package.
pascal@914 17 compile_rules()
pascal@914 18 {
pascal@914 19 cd $src
pascal@914 20 ./configure --prefix=/usr \
pascal@1514 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1514 22 make &&
pascal@15000 23 make DESTDIR=$DESTDIR install
pascal@914 24 }
pascal@914 25
pascal@914 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@914 27 genpkg_rules()
pascal@914 28 {
pascal@914 29 mkdir -p $fs/usr
pascal@15000 30 cp -a $install/usr/bin $fs/usr
pascal@914 31 }