wok view sratom/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 3b4e4318134e
children 69adfbc9427f
line source
1 # SliTaz package receipt.
3 PACKAGE="sratom"
4 VERSION="0.6.2"
5 CATEGORY="development"
6 SHORT_DESC="A library for serialising LV2 atoms to and from RDF, particularly the Turtle syntax."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="ISC"
9 WEB_SITE="https://drobilla.net/software/sratom/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.drobilla.net/$TARBALL"
14 DEPENDS="gcc83-lib-base serd sord"
15 BUILD_DEPENDS="gcc83 lv2 pkg-config serd-dev sord-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export CC=gcc-83
21 export CXX=g++-83
23 ./waf configure --prefix=/usr &&
24 ./waf build &&
25 ./waf install --destdir=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }