wok view eigen/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 2051fa04040e
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="eigen"
4 VERSION="3.3.7"
5 CATEGORY="development"
6 SHORT_DESC="A C++ template library for linear algebra."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MPL2 LGPL BSD"
9 WEB_SITE="http://eigen.tuxfamily.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2"
14 DEPENDS=""
15 BUILD_DEPENDS="cmake pkg-config glib"
17 # Rules to configure and make the package.
18 #
19 compile_rules()
20 {
21 mkdir built
22 cd built
23 cmake -DCMAKE_INSTALL_PREFIX=/usr ../
24 make -j 1 &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cp -a $install/* $fs
32 }