blob: 69a85b1797f898739af2e96096c4ca68cf480216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# Contributor: Eric Kidd <git@randomhacks.net>
# Maintainer: Holger Jaekel <holger.jaekel@gmx.de>
pkgname=geos
pkgver=3.8.0
pkgrel=0
pkgdesc="GEOS is a library providing OpenGIS and JTS spatial operations in C++."
url="https://trac.osgeo.org/geos/"
arch="all !s390x"
license="LGPL-2.1-or-later"
makedepends="
swig
python3-dev
ruby-dev
"
subpackages="
py3-$pkgname:py3
ruby-$pkgname:ruby
$pkgname-dev
"
source="
http://download.osgeo.org/geos/geos-$pkgver.tar.bz2
10-configure-python3.patch
"
build() {
case "$CARCH" in
aarch64*|ppc64le) CXXFLAGS="$CXXFLAGS -ffp-contract=off" ;;
esac
# fix build on armhf and armv7 with info from
# https://trac.osgeo.org/geos/ticket/993
local inline="--enable-inline"
case "$CARCH" in
armhf|armv7) inline="--disable-inline" ;;
esac
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
$inline \
--enable-python \
--enable-ruby
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
find $pkgdir -name "*.a" -type f -delete
}
py3() {
pkgdesc="$pkgname Python3 bindings"
install -d "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}
ruby() {
pkgdesc="$pkgname Ruby bindings"
install -d "$subpkgdir"/usr/lib/ruby/vendor_ruby
mv "$pkgdir"/usr/local/lib/site_ruby/* "$subpkgdir"/usr/lib/ruby/vendor_ruby
rm -rf "${pkgdir:?}"/usr/local
}
sha512sums="c89b25b42092152ef261090f25ff64b229f30f67d42fdf44c2871e78b66bb2c42e23b9ae21f9aea0e48823bdb0267d609ab2ee77d310abcb76fa672c6614d8f1 geos-3.8.0.tar.bz2
a76aceadb30c6a078ef9c671d8335647bd6b94094bd4bdda5958f0d50271552e8f1f7b4e9d4295986f4371a446071c3cc3a446ef520543e820bde83833fea18e 10-configure-python3.patch"
|