wok-next view eigen/receipt @ rev 20908

bzip2: update home page and source URL (thanks shann); domain bzip.org is suspended now...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Aug 12 04:53:45 2018 +0300 (2018-08-12)
parents d43bf7aae921
children d5aab818505e
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 WEB_SITE="http://eigen.tuxfamily.org/"
10 REPOLOGY="eigen3"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2"
15 DEPENDS=""
16 BUILD_DEPENDS="cmake glib"
18 # Rules to configure and make the package.
19 #
20 compile_rules()
21 {
22 mkdir built
23 cd built
24 cmake -DCMAKE_INSTALL_PREFIX=/usr ../
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
33 }