wok view fusedav/receipt @ rev 20289

elilo: force ia32 (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 10 13:11:07 2018 +0200 (2018-04-10)
parents 9f19aee613be
children 95dd63067f99
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://0pointer.de/lennart/projects/fusedav"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="fuse openssl libkrb5 krb5 expat neon zlib libcomerr3"
14 BUILD_DEPENDS="fuse-dev attr-dev openssl-dev krb5-dev krb5 expat-dev neon-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 sed -i 's/range64/range/' src/filecache.c
21 ./configure --prefix=/usr --bindir=/bin \
22 --disable-lynx \
23 --libexecdir=/usr/bin --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/bin $fs
33 }