wok annotate cadaver/receipt @ rev 17564

Up: hexchat 2.10.2
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 07 17:14:34 2015 +0000 (2015-02-07)
parents 39011a13b555
children 94d1fcf9537b
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@15001 8 LICENSE="GPL2"
pascal@3965 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@3965 10 WEB_SITE="http://www.webdav.org/cadaver"
pascal@3965 11 WGET_URL="$WEB_SITE/$TARBALL"
pascal@15001 12
pascal@4999 13 DEPENDS="openssl libkrb5 krb5 expat neon readline zlib libcomerr3"
pascal@3965 14 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev readline-dev"
jozee@4933 15 TAGS="webdav"
pascal@3965 16
pascal@3965 17 # Rules to configure and make the package.
pascal@3965 18 compile_rules()
pascal@3965 19 {
pascal@3965 20 cd $src
pascal@3965 21 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@3965 22 --libexecdir=/usr/lib/litmus \
pascal@3965 23 --mandir=/usr/share/man \
pascal@3965 24 $CONFIGURE_ARGS &&
pascal@3965 25 make &&
pascal@15001 26 make DESTDIR=$DESTDIR install
pascal@3965 27 }
pascal@3965 28
pascal@3965 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3965 30 genpkg_rules()
pascal@3965 31 {
pascal@3965 32 mkdir -p $fs/usr
pascal@15001 33 cp -a $install/usr/bin $fs/usr
pascal@3965 34 }
pascal@3965 35