wok view geos/receipt @ rev 22940

updated icecast (2.3.3 -> 2.4.4)
author Hans-G?nter Theisgen
date Thu Feb 27 15:22:59 2020 +0100 (2020-02-27)
parents 39567aac1197
children af8d823a3077
line source
1 # SliTaz package receipt.
3 PACKAGE="geos"
4 VERSION="3.8.0"
5 CATEGORY="misc"
6 SHORT_DESC="Geometry Engine, Open Source."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://trac.osgeo.org/geos/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.osgeo.org/geos/$TARBALL"
14 DEPENDS="gcc83-lib-base"
15 BUILD_DEPENDS="gcc83"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 CC=gcc-83 \
22 CXX=g++-83 \
23 $CONFIGURE_ARGS &&
24 make &&
25 make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }