wok view eigen/receipt @ rev 17715

aspell, libstatgrab, reiser4progs: add -ltinfo in LDFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 05 08:50:37 2015 +0100 (2015-03-05)
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 }