summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 62c1ffef6db93ea2e5ff5a5b11cddacc2b987caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Jean-Luc Tambasco <an.obscurity@gmail.com>

pkgname=shapely
pkgver=1.6
pkgrel=1
pkgdesc="Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects."
arch=('x86_64')
url="https://github.com/Toblerity/Shapely"
license=('BSD')
groups=('ipkiss')
depends=('geos')
source=('git+https://github.com/Toblerity/Shapely.git')
md5sums=('SKIP')

build() {
        cd "$srcdir/${pkgname^}"
        python2 setup.py build
}

package() {
        cd "$srcdir/${pkgname^}"
        python2 setup.py install --user
}