wok view litmus/receipt @ rev 20120

Up tazpkg (953)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 11:01:32 2017 +0200 (2017-10-14)
parents 8752c40cc534
children f0664a4a59f2
line source
1 # SliTaz package receipt.
3 PACKAGE="litmus"
4 VERSION="0.12.1"
5 CATEGORY="network"
6 SHORT_DESC="WEBDAV server protocol compliance test suite."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.webdav.org/neon/litmus"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS="openssl libkrb5 libcomerr3 expat neon readline zlib"
14 BUILD_DEPENDS="openssl-dev krb5-dev expat-dev neon-dev readline-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --libexecdir=/usr/lib --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 }