wok-next view cgal/receipt @ rev 21247

updated cyrus-imapd (2.4.17 -> 3.0.12)
author Hans-G?nter Theisgen
date Thu Dec 05 16:28:27 2019 +0100 (2019-12-05)
parents d635206a5649
children b7d7d7addd05
line source
1 # SliTaz package receipt v2.
3 PACKAGE="cgal"
4 VERSION="4.11"
5 CATEGORY="misc"
6 SHORT_DESC="Computational Geometry Algorithms Library"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3 LGPL3"
9 WEB_SITE="https://www.cgal.org/"
11 TARBALL="CGAL-$VERSION.tar.xz"
12 WGET_URL="https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-$VERSION/$TARBALL"
14 BUILD_DEPENDS="cmake boost-dev gmp-dev mpfr-dev boost-thread"
15 SPLIT="$PACKAGE-dev"
17 DEPENDS_std="boost-thread boost-system gcc-lib-base"
19 COOKOPTS="force-arch" # different .cmake
21 compile_rules() {
22 cmake \
23 -DCMAKE_INSTALL_PREFIX=/usr \
24 . &&
25 make &&
26 make install
27 }