wok-next view davfs2/receipt @ rev 20233
update some bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Nov 06 09:31:09 2017 +0100 (2017-11-06) |
parents | 2b9f96603415 |
children | 757d032c55c7 |
line source
1 # SliTaz package receipt.
3 PACKAGE="davfs2"
4 VERSION="1.5.4"
5 CATEGORY="network"
6 SHORT_DESC="Remote collaborative authoring of Web resources."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://savannah.nongnu.org/projects/$PACKAGE"
11 WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
12 CONFIG_FILES="/etc/davfs2"
14 DEPENDS="openssl libkrb5 krb5 expat neon zlib libcomerr3"
15 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/sbin $fs/usr
31 cp -a $install/etc $fs
32 sed -i -e 's/# dav_user/dav_user/' \
33 -e 's/# dav_group/dav_group/' \
34 -e 's/ davfs2 / www /' \
35 $fs/etc/davfs2/davfs2.conf
36 }