wok view eigen/receipt @ rev 17654

Up: diffutils 3.3
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 22:41:11 2015 +0000 (2015-02-14)
parents
children 5a370aced713
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 }