wok-current view litmus/receipt @ rev 12339
acl: Remove slitaz-toolchain from build depends. It should be installed in chroot.
| author | Christopher Rogers <slaxemulator@gmail.com> | 
|---|---|
| date | Thu Apr 19 09:12:10 2012 +0000 (2012-04-19) | 
| parents | 734283599021 | 
| children | 7896f0694ef6 | 
 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 TARBALL="$PACKAGE-$VERSION.tar.gz"
     9 WEB_SITE="http://www.webdav.org/neon/litmus"
    10 WGET_URL="$WEB_SITE/$TARBALL"
    11 DEPENDS="openssl libkrb5 libcomerr3 expat neon readline zlib"
    12 BUILD_DEPENDS="openssl-dev krb5-dev expat-dev neon-dev readline-dev"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17 	cd $src
    18 	./configure --prefix=/usr --infodir=/usr/share/info \
    19 	--libexecdir=/usr/lib --mandir=/usr/share/man \
    20 	$CONFIGURE_ARGS &&
    21 	make &&
    22 	make DESTDIR=$PWD/_pkg install
    23 }
    25 # Rules to gen a SliTaz package suitable for Tazpkg.
    26 genpkg_rules()
    27 {
    28 	mkdir -p $fs/usr
    29 	cp -a $_pkg/usr/bin $fs/usr
    30 	cp -a $_pkg/usr/lib $fs/usr
    31 }