wok view eigen/receipt @ rev 23973

Up openconnect (8.10), openexr (2.5.3), openldap (2.4.55), openssh (8.4p1), openvswitch (2.14.0), phpmyadmin (5.0.4), rust (1.47.0), shellinabox (2.21)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 28 12:04:50 2020 +0000 (2020-10-28)
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 }