wok view cadaver/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents 94d1fcf9537b
children afae00265386
line source
1 # SliTaz package receipt.
3 PACKAGE="cadaver"
4 VERSION="0.23.3"
5 CATEGORY="network"
6 TAGS="webdav"
7 SHORT_DESC="Command-line WEBDAV client."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://www.webdav.org/cadaver"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$WEB_SITE/$TARBALL"
15 DEPENDS="openssl libkrb5 krb5 expat neon readline zlib libcomerr3"
16 BUILD_DEPENDS="openssl-dev krb5-dev krb5 expat-dev neon-dev readline-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 touch config.rpath
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --libexecdir=/usr/lib/litmus \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 }