summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-07-19 02:30:05 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-07-19 02:30:05 (GMT)
commit4a2c206247b9e8083a695b77c6e3210ed9aef02d (patch)
tree3416420e3d67791a7a11af8748590bdc60e6747e /abs
parent505a9cecabf243620fcc06de5f15f03ebfa8e996 (diff)
downloadlinhes_pkgbuild-4a2c206247b9e8083a695b77c6e3210ed9aef02d.zip
linhes_pkgbuild-4a2c206247b9e8083a695b77c6e3210ed9aef02d.tar.gz
linhes_pkgbuild-4a2c206247b9e8083a695b77c6e3210ed9aef02d.tar.bz2
python2-colorclass: initial inclusion. dep of flexget
Diffstat (limited to 'abs')
-rw-r--r--abs/core/python_modules/python2-colorclass/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-colorclass/PKGBUILD b/abs/core/python_modules/python2-colorclass/PKGBUILD
new file mode 100644
index 0000000..fcb218f
--- /dev/null
+++ b/abs/core/python_modules/python2-colorclass/PKGBUILD
@@ -0,0 +1,23 @@
+# Maintainer: Cedric Girard <girard.cedric@gmail.com>
+_pythonmod=colorclass
+pkgname=python2-colorclass
+pkgver=2.2.0
+pkgrel=1
+pkgdesc="Colorful worry-free console applications for Linux, Mac OS X, and Windows"
+arch=('any')
+url="http://pypi.python.org/pypi/${_pythonmod}"
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=("https://pypi.io/packages/source/${_pythonmod:0:1}/${_pythonmod}/${_pythonmod}-$pkgver.tar.gz")
+md5sums=('060139e93e31faafeb5d4bdfd6ea0bb8')
+
+build() {
+ cd ${srcdir}/${_pythonmod}-$pkgver
+ python2 setup.py build
+}
+
+package() {
+ cd ${srcdir}/${_pythonmod}-$pkgver
+ python2 setup.py install --root=${pkgdir}
+}