aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-08-04 18:38:45 +0200
committerJohannes Löthberg <johannes@kyriasis.com>2015-06-08 12:21:57 +0200
commit46dd6150bd16d8185881e027e8b5e67a97369a66 (patch)
tree5386fb75496f3ff3a0f070c2b5fb30205c011dbb
downloadpkgbuilds-46dd6150bd16d8185881e027e8b5e67a97369a66.tar.xz
python-geojson: import
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD20
2 files changed, 36 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 0000000..6553e6e
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by makepkg 4.2.1
+# Mon Jun 1 13:54:21 UTC 2015
+pkgbase = python-geojson
+ pkgdesc = Python bindings and utlities for GeoJSON
+ pkgver = 1.0.7
+ pkgrel = 1
+ url = https://github.com/frewsxcv/python-geojson
+ arch = any
+ license = BSD
+ makedepends = python-setuptools
+ depends = python
+ source = https://github.com/frewsxcv/python-geojson/archive/1.0.7.tar.gz
+ md5sums = 60f01b2c00bdb7e1eabee67dbb7cfd32
+
+pkgname = python-geojson
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..7d7d36c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,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"
+}