wok annotate cadaver/receipt @ rev 9173

wvstreams: needs -j1
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 08 18:20:44 2011 +0100 (2011-03-08)
parents f7e96b8e3444
children 408c87fa22ca
rev   line source
pascal@3965 1 # SliTaz package receipt.
pascal@3965 2
pascal@3965 3 PACKAGE="cadaver"
pascal@3965 4 VERSION="0.23.2"
pascal@3965 5 CATEGORY="network"
pascal@3965 6 SHORT_DESC="Command-line WEBDAV client."
pascal@3965 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@3965 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@3965 9 WEB_SITE="http://www.webdav.org/cadaver"
pascal@3965 10 WGET_URL="$WEB_SITE/$TARBALL"
pascal@4999 11 DEPENDS="openssl libkrb5 krb5 expat neon readline zlib libcomerr3"
pascal@3965 12 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev readline-dev"
jozee@4933 13 TAGS="webdav"
pascal@3965 14
pascal@3965 15 # Rules to configure and make the package.
pascal@3965 16 compile_rules()
pascal@3965 17 {
pascal@3965 18 cd $src
pascal@3965 19 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3965 20 --libexecdir=/usr/lib/litmus \
pascal@3965 21 --mandir=/usr/share/man \
pascal@3965 22 $CONFIGURE_ARGS &&
pascal@3965 23 make &&
pascal@3965 24 make DESTDIR=$PWD/_pkg install
pascal@3965 25 }
pascal@3965 26
pascal@3965 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3965 28 genpkg_rules()
pascal@3965 29 {
pascal@3965 30 mkdir -p $fs/usr
pascal@3965 31 cp -a $_pkg/usr/bin $fs/usr
pascal@3965 32 }
pascal@3965 33