wok view fusedav/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents 90d6744df8da
children 7bb096863642
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 zlib libcomerr3"
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 }