wok diff eigen/receipt @ rev 18984
clementine: update bdeps
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Mar 16 21:28:57 2016 +0200 (2016-03-16) |
parents | |
children | 5a370aced713 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/eigen/receipt Wed Mar 16 21:28:57 2016 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="eigen" 1.7 +VERSION="3.2.2" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="A C++ template library for linear algebra." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="MPL2 LGPL BSD" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WEB_SITE="http://eigen.tuxfamily.org/" 1.14 +WGET_URL="https://bitbucket.org/$PACKAGE/$PACKAGE/get/$VERSION.tar.bz2" 1.15 + 1.16 +DEPENDS="" 1.17 +BUILD_DEPENDS="wget cmake pkg-config glib" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +# 1.21 +compile_rules() 1.22 +{ 1.23 + mkdir built 1.24 + cd built 1.25 + cmake -DCMAKE_INSTALL_PREFIX=/usr ../ 1.26 + make && 1.27 + make DESTDIR=$DESTDIR install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/* $fs 1.34 +}