wok diff fusedav/receipt @ rev 4937

add/improve TAGS h* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 14:01:36 2010 +0000 (2010-02-16)
parents
children 9f19aee613be
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/fusedav/receipt	Tue Feb 16 14:01:36 2010 +0000
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="fusedav"
     1.7 +VERSION="0.2"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Linux userspace file system driver for mounting WebDAV shares."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +DEPENDS="fuse openssl libkrb5 krb5 expat neon"
    1.12 +BUILD_DEPENDS="fuse-dev attr-dev openssl-dev krb5-dev krb5 expat-dev neon-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 +WEB_SITE="http://0pointer.de/lennart/projects/fusedav"
    1.15 +WGET_URL="$WEB_SITE/$TARBALL"
    1.16 +
    1.17 +# Rules to configure and make the package.
    1.18 +compile_rules()
    1.19 +{
    1.20 +	cd $src
    1.21 +	sed -i 's/range64/range/' src/filecache.c
    1.22 +	./configure --prefix=/usr --bindir=/bin \
    1.23 +	--disable-lynx \
    1.24 +	--libexecdir=/usr/bin --mandir=/usr/share/man \
    1.25 +	$CONFIGURE_ARGS &&
    1.26 +	make &&
    1.27 +	make DESTDIR=$PWD/_pkg install
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	cp -a $_pkg/bin $fs
    1.34 +}