mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 02:35:23 +03:00
29 lines
749 B
Text
29 lines
749 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-geojson
|
|
pkgver=3.0.1
|
|
pkgrel=0
|
|
pkgdesc="Python bindings and utilities for GeoJSON"
|
|
url="https://github.com/jazzband/geojson"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://pypi.python.org/packages/source/g/geojson/geojson-$pkgver.tar.gz"
|
|
builddir="$srcdir/geojson-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
11163cee56c441674db679fd03d9e1d69f069916f8adf58736ccef0677fec033d2677c246a73deb5cb1293a57ada50a0e8e572a71b92b69ec761e1f5a377bdb5 geojson-3.0.1.tar.gz
|
|
"
|