blob: 45487342312233169a49e4dc2ad7e7cce7e11e71 (
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
|
# Maintainer: peippo <christoph.fink@gmail.com>
pkgname=geos-git
pkgver=3.10.0dev.7b70ce97
pkgrel=1
pkgdesc="C++ port of the Java Topology Suite (git version)"
url="http://trac.osgeo.org/geos/"
license=("LGPL")
arch=("i686" "x86_64")
makedepends=("cmake" "git")
conflicts=("geos")
provides=("geos")
source=("${pkgname}::git+https://git.osgeo.org/gitea/geos/geos.git")
md5sums=("SKIP")
pkgver() {
cd "${pkgname}"
if [[ -e "Version.txt" ]]; then
source Version.txt
COMMIT="$(git rev-parse --short HEAD)"
echo "${GEOS_VERSION_MAJOR}.${GEOS_VERSION_MINOR}.${GEOS_VERSION_PATCH}${GEOS_PATCH_WORD}.${COMMIT}"
else
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
fi
}
build() {
cmake \
-B build \
-S "${pkgname}" \
-DCMAKE_BUILD_TYPE="None" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-Wno-dev
make -C build
}
package() {
cd "build"
make DESTDIR="${pkgdir}" install
}
|