aboutsummaryrefslogtreecommitdiffstats
path: root/PKGBUILD
blob: 7d7d36c8a87d2ac1a0a8bdf70d3aac5ec943cc58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname=python-geojson
pkgver=1.0.7
pkgrel=1

pkgdesc="Python bindings and utlities for GeoJSON"
url="https://github.com/frewsxcv/python-geojson"
arch=('any')
license=('BSD')

depends=('python')
makedepends=('python-setuptools')

source=(https://github.com/frewsxcv/python-geojson/archive/$pkgver.tar.gz)
md5sums=('60f01b2c00bdb7e1eabee67dbb7cfd32')

package() {
	cd python-geojson-$pkgver
	python setup.py install --root="$pkgdir/" --optimize=1
	install -Dm644 LICENSE.rst "$pkgdir/usr/share/licenses/python-geojson/LICENSE"
}