summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authororumin2016-07-21 20:36:10 +0900
committerorumin2016-07-21 20:36:10 +0900
commit06fc0b9662f3e5216df0f5d453d5268a98ce14e4 (patch)
tree2d4a705c44352f791b945d9d16a6e940a06f4212
downloadaur-06fc0b9662f3e5216df0f5d453d5268a98ce14e4.tar.gz
Initial Commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD17
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..284b827cba13
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Thu Jul 21 11:36:01 UTC 2016
+pkgbase = python2-jxmlease
+ pkgdesc = A Python module for converting XML to intelligent Python data structures, and converting Python data structures to XML.
+ pkgver = 1.0.1
+ pkgrel = 1
+ url = https://github.com/Juniper/jxmlease
+ arch = any
+ license = MIT
+ depends = python2
+ source = https://github.com/Juniper/jxmlease/archive/1.0.1.tar.gz
+ md5sums = d567851b9a7ff0d3b588bac230a2050d
+
+pkgname = python2-jxmlease
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4497f3f80a10
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: orumin <dev@orum.in>
+
+pkgname=python2-jxmlease
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="A Python module for converting XML to intelligent Python data structures, and converting Python data structures to XML."
+arch=('any')
+url="https://github.com/Juniper/jxmlease"
+license=('MIT')
+depends=('python2')
+source=(https://github.com/Juniper/jxmlease/archive/1.0.1.tar.gz)
+md5sums=('d567851b9a7ff0d3b588bac230a2050d')
+
+package() {
+ cd "$srcdir/jxmlease-$pkgver"
+ python2 setup.py install --prefix=/usr --root=$pkgdir
+}