mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 13:57:17 +08:00
24 lines
490 B
Bash
24 lines
490 B
Bash
pkgname=geos
|
|
pkgver=3.6.2
|
|
pkgrel=1
|
|
pkgdesc="A C++ port of the Java Topology Suite"
|
|
arch=('x86_64')
|
|
url="http://trac.osgeo.org/geos/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs' 'bash')
|
|
options=('!emptydirs')
|
|
source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('a32142343c93d3bf151f73db3baa651f')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|