wok annotate fusedav/receipt @ rev 19769

rsync: may not require /etc/inetd.conf (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 20 18:09:56 2017 +0100 (2017-02-20)
parents 9f19aee613be
children 95dd63067f99
rev   line source
pascal@3967 1 # SliTaz package receipt.
pascal@3967 2
pascal@3967 3 PACKAGE="fusedav"
pascal@3967 4 VERSION="0.2"
pascal@3967 5 CATEGORY="system-tools"
pascal@3967 6 SHORT_DESC="Linux userspace file system driver for mounting WebDAV shares."
pascal@3967 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15215 8 LICENSE="GPL2"
pascal@3967 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@3967 10 WEB_SITE="http://0pointer.de/lennart/projects/fusedav"
pascal@3967 11 WGET_URL="$WEB_SITE/$TARBALL"
pascal@3967 12
pascal@15215 13 DEPENDS="fuse openssl libkrb5 krb5 expat neon zlib libcomerr3"
pascal@15215 14 BUILD_DEPENDS="fuse-dev attr-dev openssl-dev krb5-dev krb5 expat-dev neon-dev"
pascal@15215 15
pascal@3967 16 # Rules to configure and make the package.
pascal@3967 17 compile_rules()
pascal@3967 18 {
pascal@3967 19 cd $src
pascal@3967 20 sed -i 's/range64/range/' src/filecache.c
pascal@3967 21 ./configure --prefix=/usr --bindir=/bin \
pascal@3967 22 --disable-lynx \
pascal@3967 23 --libexecdir=/usr/bin --mandir=/usr/share/man \
pascal@3967 24 $CONFIGURE_ARGS &&
pascal@3967 25 make &&
pascal@15215 26 make DESTDIR=$DESTDIR install
pascal@3967 27 }
pascal@3967 28
pascal@3967 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3967 30 genpkg_rules()
pascal@3967 31 {
pascal@15215 32 cp -a $install/bin $fs
pascal@3967 33 }