summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-07-16 15:38:23 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-07-16 15:38:23 (GMT)
commit4ac52e6d2d71442aa199c9e3197ba58c2cd016fe (patch)
tree9e9a5aa9b0151f3be56db8abed0caafd8d6b1d9f
parentec19a5b2ff2ffe2521e045ea7b35487831f744cf (diff)
downloadlinhes_pkgbuild-4ac52e6d2d71442aa199c9e3197ba58c2cd016fe.zip
linhes_pkgbuild-4ac52e6d2d71442aa199c9e3197ba58c2cd016fe.tar.gz
linhes_pkgbuild-4ac52e6d2d71442aa199c9e3197ba58c2cd016fe.tar.bz2
python2-babelfish: initial inclusion. dep of flexget
-rw-r--r--abs/core/python_modules/python2-babelfish/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-babelfish/PKGBUILD b/abs/core/python_modules/python2-babelfish/PKGBUILD
new file mode 100644
index 0000000..bba4e20
--- /dev/null
+++ b/abs/core/python_modules/python2-babelfish/PKGBUILD
@@ -0,0 +1,24 @@
+# Maintainer: sleduc <sebastien@sleduc.fr>
+# Contributor: Quentin Stievenart <acieroid@awesom.eu>
+
+name='babelfish'
+pkgname=python2-$name
+pkgver=0.5.5
+pkgrel=1
+pkgdesc="A module to work with countries and languages"
+arch=('any')
+url="http://pypi.python.org/pypi/$name"
+license=('BSD')
+makedepends=('python2-setuptools')
+depends=('python2')
+options=(!emptydirs)
+
+source=("http://pypi.python.org/packages/source/b/$name/$name-$pkgver.tar.gz")
+md5sums=('5f930555649692997bcf80bb5f42d9db')
+
+package() {
+ cd "$srcdir/$name-$pkgver"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et: