wok-next view eigen/receipt @ rev 19719

Up xorg-makedepend (1.0.5), xorg-gccmakedep (1.0.3), xorg-imake (1.0.7)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 24 11:59:19 2017 +0200 (2017-05-24)
parents
children d43bf7aae921
line source
1 # SliTaz package receipt.
3 PACKAGE="eigen"
4 VERSION="3.2.2"
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 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://eigen.tuxfamily.org/"
11 WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2"
13 DEPENDS=""
14 BUILD_DEPENDS="wget cmake pkg-config glib"
16 # Rules to configure and make the package.
17 #
18 compile_rules()
19 {
20 mkdir built
21 cd built
22 cmake -DCMAKE_INSTALL_PREFIX=/usr ../
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }