wok view ode/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 23c3aed67cd9
children 5e00d55089d7
line source
1 # SliTaz package receipt.
3 PACKAGE="ode"
4 VERSION="0.16"
5 CATEGORY="misc"
6 SHORT_DESC="An open source, high performance library for simulating rigid body dynamics."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="LGPL2.1 BSD"
9 WEB_SITE="https://www.ode.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://bitbucket.org/odedevs/$PACKAGE/downloads/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS="gcc83 libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 export CC=gcc-83
21 export CXX=g++-83
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 --enable-shared \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/lib
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }