wok-4.x diff fusedav/receipt @ rev 4702
squashfs: add lzma support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Jan 03 18:38:54 2010 +0100 (2010-01-03) |
parents | |
children | 9f19aee613be |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/fusedav/receipt Sun Jan 03 18:38:54 2010 +0100 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 +}