wok-next annotate cgal/receipt @ rev 21081

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Dec 24 11:36:03 2018 +0200 (2018-12-24)
parents d5aab818505e
children e19ff076dc63
rev   line source
pascal@20103 1 # SliTaz package receipt v2.
pascal@16724 2
pascal@16724 3 PACKAGE="cgal"
pascal@20103 4 VERSION="4.11"
pascal@16724 5 CATEGORY="misc"
al@21020 6 SHORT_DESC="Computational Geometry Algorithms Library"
pascal@16724 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16724 8 LICENSE="GPL3 LGPL3"
pascal@16724 9 WEB_SITE="https://www.cgal.org/"
al@21020 10
al@21020 11 TARBALL="CGAL-$VERSION.tar.xz"
pascal@20103 12 WGET_URL="https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-$VERSION/$TARBALL"
pascal@16724 13
al@20915 14 BUILD_DEPENDS="cmake boost-dev gmp-dev mpfr-dev boost-thread"
al@21020 15 SPLIT="$PACKAGE-dev"
pascal@16724 16
al@21081 17 DEPENDS_std="boost-thread boost-system gcc-lib-base"
al@21081 18
al@21020 19 compile_rules() {
al@21020 20 cmake \
al@21020 21 -DCMAKE_INSTALL_PREFIX=/usr \
al@21020 22 . &&
al@21020 23 make &&
pascal@16724 24 make install
pascal@16724 25 }