wok-next view cocoalib/receipt @ rev 21719

gtk3: added build dependency libxtst
author Hans-G?nter Theisgen
date Tue Aug 04 17:36:05 2020 +0100 (2020-08-04)
parents e7e7475e84c9
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="cocoalib"
4 VERSION="0.99710"
5 CATEGORY="misc"
6 SHORT_DESC="C++ library for doing Computations in Commutative Algebra"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://cocoa.dima.unige.it/cocoalib/"
11 TARBALL="CoCoALib-$VERSION.tgz"
12 WGET_URL="http://cocoa.dima.unige.it/cocoalib/tgz/$TARBALL"
14 BUILD_DEPENDS="bash boost-dev boost-filesystem boost-iostreams
15 boost-math-tr1 boost-system boost-thread gmp-dev gsl-dev
16 readline-dev"
18 COPY_std="@dev"
19 DEPENDS_std="boost-filesystem boost-iostreams boost-math-tr1
20 boost-system boost-thread gmp gsl readline"
22 compile_rules()
23 {
24 ./configure &&
25 make library || return 1
27 install -Dm644 lib/libcocoa.a $install/usr/lib/libcocoa.a
29 mkdir -p $install/usr/include
30 cp -r $src/include/* $install/usr/include
31 find $install -type f -name '*.H' -exec chmod 644 '{}' \;
32 }