wok view cadaver/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
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 }