wok annotate eigen/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents 2051fa04040e
children bfabe25c21ff
rev   line source
pascal@17321 1 # SliTaz package receipt.
pascal@17321 2
pascal@17321 3 PACKAGE="eigen"
Hans-G?nter@20871 4 VERSION="3.3.7"
pascal@17321 5 CATEGORY="development"
pascal@17321 6 SHORT_DESC="A C++ template library for linear algebra."
pascal@17321 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17321 8 LICENSE="MPL2 LGPL BSD"
Hans-G?nter@20871 9 WEB_SITE="http://eigen.tuxfamily.org/"
Hans-G?nter@20871 10
pascal@17321 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@17321 12 WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2"
pascal@17321 13
pascal@17321 14 DEPENDS=""
Hans-G?nter@20871 15 BUILD_DEPENDS="cmake pkg-config glib"
pascal@17321 16
pascal@17321 17 # Rules to configure and make the package.
pascal@17321 18 #
pascal@17321 19 compile_rules()
pascal@17321 20 {
pascal@17321 21 mkdir built
pascal@17321 22 cd built
pascal@17321 23 cmake -DCMAKE_INSTALL_PREFIX=/usr ../
Hans-G?nter@20871 24 make -j 1 &&
pascal@17321 25 make DESTDIR=$DESTDIR install
pascal@17321 26 }
pascal@17321 27
pascal@17321 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17321 29 genpkg_rules()
pascal@17321 30 {
pascal@17321 31 cp -a $install/* $fs
pascal@17321 32 }