wok annotate cadaver/receipt @ rev 3965

Add cadaver
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 26 17:45:10 2009 +0200 (2009-08-26)
parents
children f7e96b8e3444
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@3965 11 DEPENDS="openssl libkrb5 krb5 expat neon readline"
pascal@3965 12 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev readline-dev"
pascal@3965 13
pascal@3965 14 # Rules to configure and make the package.
pascal@3965 15 compile_rules()
pascal@3965 16 {
pascal@3965 17 cd $src
pascal@3965 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3965 19 --libexecdir=/usr/lib/litmus \
pascal@3965 20 --mandir=/usr/share/man \
pascal@3965 21 $CONFIGURE_ARGS &&
pascal@3965 22 make &&
pascal@3965 23 make DESTDIR=$PWD/_pkg install
pascal@3965 24 }
pascal@3965 25
pascal@3965 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3965 27 genpkg_rules()
pascal@3965 28 {
pascal@3965 29 mkdir -p $fs/usr
pascal@3965 30 cp -a $_pkg/usr/bin $fs/usr
pascal@3965 31 }
pascal@3965 32