mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
602 B
Bash
19 lines
602 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: tardo <tardo@nagi-fanboi.net>
|
|
|
|
pkgname=python-geotypes
|
|
pkgver=0.7.0
|
|
pkgrel=2
|
|
pkgdesc="A python library that implements the OpenGIS 'Simple Features \
|
|
Specification for SQL' Geometric Object Model"
|
|
arch=('i686' 'x86_64')
|
|
url="http://initd.org/tracker/psycopg/wiki/GeoTypes"
|
|
license=('LGPL')
|
|
depends=('python-psycopg1')
|
|
source=(http://initd.org/svn/psycopg/geotypes/releases/GeoTypes-$pkgver.tar.gz)
|
|
md5sums=('241f2a2ec3a90b7d501fccf7879549db')
|
|
|
|
build() {
|
|
cd $startdir/src/GeoTypes-$pkgver
|
|
python setup.py install --root=$startdir/pkg
|
|
}
|