mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:07:14 +08:00
29 lines
652 B
Bash
29 lines
652 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=geos
|
|
pkgver=3.2.1
|
|
pkgrel=1
|
|
pkgdesc="A C++ port of the Java Topology Suite"
|
|
arch=('i686' 'x86_64')
|
|
url="http://trac.osgeo.org/geos/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
options=('!libtool')
|
|
source=(http://download.osgeo.org/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('01f01943bdf598977cee40905c9abfbf')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|