mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +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.0
|
|
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="
|
|
e8f4ae0abcbe1b03bfe043ea2ad621929283c1a7d5145182db3efc4af47586f80b88ec59d3fc91e1a4984811f2482bfc228c8eb41427dfbc59c9eef72c4aec82 geojson-3.0.0.tar.gz
|
|
"
|