mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
521 B
Bash
19 lines
521 B
Bash
|
# $Id: PKGBUILD 2509 2009-09-19 12:42:44Z ibiru $
|
||
|
# Contributor: William Rea <sillywilly@gmail.com>
|
||
|
|
||
|
pkgname=mezogis
|
||
|
pkgver=0.1.5
|
||
|
pkgrel=3
|
||
|
pkgdesc="A GIS application to query and analyse spatial data"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.mezogis.org"
|
||
|
license=('GPL')
|
||
|
depends=('pygtk' 'python-geotypes' 'postgis>=1.4')
|
||
|
source=(http://www.mezogis.org/files/mezogis-$pkgver.tar.gz)
|
||
|
md5sums=('1f886b849109a1a1bd3e165353b82368')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/mezogis-$pkgver
|
||
|
python setup.py install --root=$startdir/pkg
|
||
|
}
|