wok-current view fusedav/receipt @ rev 4144
Add: orage, thuna, thunar-dev, terminal
| author | Eric Joseph-Alexandre <erjo@slitaz.org> | 
|---|---|
| date | Sun Sep 20 13:42:58 2009 +0000 (2009-09-20) | 
| parents | |
| children | 9f19aee613be | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="fusedav"
     4 VERSION="0.2"
     5 CATEGORY="system-tools"
     6 SHORT_DESC="Linux userspace file system driver for mounting WebDAV shares."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 DEPENDS="fuse openssl libkrb5 krb5 expat neon"
     9 BUILD_DEPENDS="fuse-dev attr-dev openssl-dev krb5-dev krb5 expat-dev neon-dev"
    10 TARBALL="$PACKAGE-$VERSION.tar.gz"
    11 WEB_SITE="http://0pointer.de/lennart/projects/fusedav"
    12 WGET_URL="$WEB_SITE/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	sed -i 's/range64/range/' src/filecache.c
    19 	./configure --prefix=/usr --bindir=/bin \
    20 	--disable-lynx \
    21 	--libexecdir=/usr/bin --mandir=/usr/share/man \
    22 	$CONFIGURE_ARGS &&
    23 	make &&
    24 	make DESTDIR=$PWD/_pkg install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	cp -a $_pkg/bin $fs
    31 }