mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
27 lines
740 B
Bash
27 lines
740 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=geos
|
|
pkgver=3.1.0rc2
|
|
pkgrel=1
|
|
pkgdesc="A C++ port of the Java Topology Suite"
|
|
arch=('i686' 'x86_64')
|
|
url="http://geos.refractions.net"
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
source=(http://download.osgeo.org/geos/geos-3.1.0rc2.tar.bz2
|
|
'gcc4.3.patch')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
|
patch -Np1 < ../gcc4.3.patch
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
|
|
ln -s /usr/lib/libgeos.so $startdir/pkg/usr/lib/libgeos.so.2
|
|
}
|
|
md5sums=('bf999ba31072af5be3db46858b945d6b'
|
|
'01e268177a673704eba3def8c9efdf88')
|