annotate src/geos.mk @ 6660:ea942f66cebc

* src/geos.mk: update to v3.11.2
author John Donoghue <john.donoghue@ieee.org>
date Thu, 23 Mar 2023 09:59:39 -0400
parents 7dc44c7d27bd
children 72ff7ac971ec
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 2203
diff changeset
1 # This file is part of MXE.
2353
99516e73b368 Move doc/index.html -> index.html
Volker Grabsch <vog@notjusthosting.com>
parents: 2349
diff changeset
2 # See index.html for further information.
414
d2a6561bcb6d add a copyright notice and license to each source file
Volker Grabsch <vog@notjusthosting.com>
parents: 397
diff changeset
3
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
4 PKG := geos
448
e9afec55fd6b improved version recognition, enable the notation of ignored (bad) package versions
Volker Grabsch <vog@notjusthosting.com>
parents: 420
diff changeset
5 $(PKG)_IGNORE :=
6660
ea942f66cebc * src/geos.mk: update to v3.11.2
John Donoghue <john.donoghue@ieee.org>
parents: 6561
diff changeset
6 $(PKG)_VERSION := 3.11.2
ea942f66cebc * src/geos.mk: update to v3.11.2
John Donoghue <john.donoghue@ieee.org>
parents: 6561
diff changeset
7 $(PKG)_CHECKSUM := 2a13604e27c1d3146a523017ad1e6290b526230c
306
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
8 $(PKG)_SUBDIR := geos-$($(PKG)_VERSION)
85ffa9259036 validate downloads using SHA-1 checksums
Volker Grabsch <vog@notjusthosting.com>
parents: 303
diff changeset
9 $(PKG)_FILE := geos-$($(PKG)_VERSION).tar.bz2
1456
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 883
diff changeset
10 $(PKG)_URL := http://download.osgeo.org/geos/$($(PKG)_FILE)
c92395bc3a88 fix download URLs of package: gdal geos libgeotiff proj tiff
Volker Grabsch <vog@notjusthosting.com>
parents: 883
diff changeset
11 $(PKG)_URL_2 := ftp://ftp.remotesensing.org/geos/$($(PKG)_FILE)
3048
5ef49fb3299d treat gcc and binutils as build tools
John W. Eaton <jwe@octave.org>
parents: 3031
diff changeset
12 $(PKG)_DEPS :=
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
13
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
14 define $(PKG)_UPDATE
5261
838e72224da0 * src/geos.mk: update to v3.8.0
John Donoghue
parents: 5087
diff changeset
15 $(WGET) -q -O- 'http://download.osgeo.org/geos/?C=M&O=A' | \
6561
7dc44c7d27bd * src/geos.mk: update to v3.11.1
John Donoghue <john.donoghue@ieee.org>
parents: 6295
diff changeset
16 $(SED) -n 's,.*geos-\([0-9][^>]*\)\.tar.*,\1,p' | $(SORT) -V | \
4384
d5a5b8e659de update PKG_UPDATE rules
John D
parents: 4278
diff changeset
17 tail -1
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
18 endef
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
19
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
20 define $(PKG)_BUILD
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
21 cd '$(1)' && ./configure \
3013
bcc26ffe9a0f use variable for --host and --build configure arguments
John W. Eaton <jwe@octave.org>
parents: 3012
diff changeset
22 $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
2855
47558e958113 Allow static/shared libraries to be configured in top-level Makefile.
John W. Eaton <jwe@octave.org>
parents: 2644
diff changeset
23 $(ENABLE_SHARED_OR_STATIC) \
3012
100e618349f7 Improve handling of prefix directories by defining HOST_PREFIX and
John W. Eaton <jwe@octave.org>
parents: 2855
diff changeset
24 --prefix='$(HOST_PREFIX)'
4984
e08c581e84b0 * src/geos.mk: update to 3.7.1
John Donoghue
parents: 4561
diff changeset
25 $(MAKE) -C '$(1)' -j '$(JOBS)' $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS)
e08c581e84b0 * src/geos.mk: update to 3.7.1
John Donoghue
parents: 4561
diff changeset
26 $(MAKE) -C '$(1)' -j 1 install $(MXE_DISABLE_PROGS) $(MXE_DISABLE_DOCS) DESTDIR='$(3)'
165
0b4277f483b2 translated package: geos
Volker Grabsch <vog@notjusthosting.com>
parents:
diff changeset
27 endef