wok-current rev 16724
Add cgal
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 02 20:08:48 2014 +0000 (2014-06-02) |
parents | 8234c9e747d9 |
children | 9ebf504c7668 |
files | cgal-dev/receipt cgal/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/cgal-dev/receipt Mon Jun 02 20:08:48 2014 +0000 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="cgal-dev" 1.7 +VERSION="4.4" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Computational Geometry Algorithms Library, development files." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="GPL3 LGPL3" 1.12 +WEB_SITE="https://www.cgal.org/" 1.13 +WANTED="cgal" 1.14 + 1.15 +DEPENDS="cgal" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr/lib 1.21 + cp -a $install/usr/include $fs/usr 1.22 + cp -a $install/usr/bin $fs/usr 1.23 + cp -a $install/usr/lib/CGAL $fs/usr/lib 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/cgal/receipt Mon Jun 02 20:08:48 2014 +0000 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="cgal" 2.7 +SOURCE="CGAL" 2.8 +VERSION="4.4" 2.9 +CATEGORY="misc" 2.10 +SHORT_DESC="Computational Geometry Algorithms Library." 2.11 +MAINTAINER="pascal.bellard@slitaz.org" 2.12 +LICENSE="GPL3 LGPL3" 2.13 +TARBALL="$SOURCE-$VERSION.tar.xz" 2.14 +WEB_SITE="https://www.cgal.org/" 2.15 +WGET_URL="https://gforge.inria.fr/frs/download.php/file/33526/$TARBALL" 2.16 + 2.17 +DEPENDS="libboost-thread libboost-system gcc-lib-base" 2.18 +BUILD_DEPENDS="wget cmake libboost-dev gmp-dev mpfr-dev libboost-thread-dev" 2.19 + 2.20 +# Rules to configure and make the package. 2.21 +compile_rules() 2.22 +{ 2.23 + cmake -DCMAKE_INSTALL_PREFIX=/usr . 2.24 + make 2.25 + make install 2.26 +} 2.27 + 2.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/lib 2.32 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.33 +}