wok-next view fusedav/receipt @ rev 21724

busybox: update configs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 11:04:25 2020 +0000 (2020-09-01)
parents 474eb4a6385a
children
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://0pointer.de/lennart/projects/fusedav/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 BUILD_DEPENDS="fuse2-dev attr-dev openssl-dev krb5-dev krb5 expat-dev neon-dev"
16 compile_rules() {
17 sed -i 's/range64/range/' src/filecache.c
19 ./configure \
20 --prefix=/usr \
21 --bindir=/bin \
22 --disable-lynx \
23 --libexecdir=/usr/bin \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$install install
28 }
30 genpkg_rules() {
31 copy @std
32 DEPENDS="fuse2 openssl libkrb5 krb5 expat neon zlib libcomerr3"
33 }