wok annotate davfs2/receipt @ rev 21320

updated libtorrent and libtorrent-dev (0.13.3 -> 0.13.7)
author Hans-G?nter Theisgen
date Fri Apr 19 07:28:58 2019 +0100 (2019-04-19)
parents 401224c936cc
children c7c1f3ae73ab
rev   line source
pascal@3968 1 # SliTaz package receipt.
pascal@3968 2
pascal@3968 3 PACKAGE="davfs2"
pascal@20194 4 VERSION="1.5.4"
pascal@3968 5 CATEGORY="network"
pascal@3968 6 SHORT_DESC="Remote collaborative authoring of Web resources."
pascal@3968 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@3968 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@3968 10 WEB_SITE="http://savannah.nongnu.org/projects/$PACKAGE"
pascal@12430 11 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
pascal@14999 12 CONFIG_FILES="/etc/davfs2"
pascal@14999 13
pascal@5000 14 DEPENDS="openssl libkrb5 krb5 expat neon zlib libcomerr3"
pascal@3969 15 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev"
pascal@3968 16
pascal@3968 17 # Rules to configure and make the package.
pascal@3968 18 compile_rules()
pascal@3968 19 {
pascal@20196 20 sed -i 's|-fstack-protector-strong ||' src/Makefile.*
pascal@3968 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3968 22 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@3968 23 make &&
pascal@14999 24 make DESTDIR=$DESTDIR install
pascal@3968 25 }
pascal@3968 26
pascal@3968 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3968 28 genpkg_rules()
pascal@3968 29 {
pascal@3968 30 mkdir -p $fs/usr
pascal@14999 31 cp -a $install/usr/sbin $fs/usr
pascal@14999 32 cp -a $install/etc $fs
pascal@3968 33 sed -i -e 's/# dav_user/dav_user/' \
pascal@3968 34 -e 's/# dav_group/dav_group/' \
pascal@3968 35 -e 's/ davfs2 / www /' \
pascal@3968 36 $fs/etc/davfs2/davfs2.conf
pascal@3968 37 }