wok-next view geos/receipt @ rev 20514

ardour, gdal, icu, js, jsoncpp, libvpx, llvm, mesa, minetest, opencv, qt5, scilab, webkit2gtk, webkitgtk, xalan-c: remove std.patch, use `fix math`.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 16:15:19 2018 +0200 (2018-03-21)
parents 8014569962ac
children 30af4e7aa239
line source
1 # SliTaz package receipt v2.
3 PACKAGE="geos"
4 VERSION="3.6.2"
5 CATEGORY="misc"
6 SHORT_DESC="Geometry Engine, Open Source."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://trac.osgeo.org/geos/"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://download.osgeo.org/geos/$TARBALL"
13 BUILD_DEPENDS=""
14 SPLIT="geos-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 case $PACKAGE in
26 geos)
27 DEPENDS="gcc-lib-base"
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 ;;
31 geos-dev)
32 CAT="development|Geos dev files."
33 DEPENDS="geos"
34 mkdir -p $fs/usr/bin $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/include $fs/usr
37 cp -a $install/usr/lib/*.*a $fs/usr/lib
38 ;;
39 esac
40 }