wok view eigen/receipt @ rev 21639

procps-3.2.8 recompiled (ncurses-6.1)
author Hans-G?nter Theisgen
date Wed May 29 16:50:51 2019 +0100 (2019-05-29)
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 }