summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2017-07-19 04:31:21 (GMT)
committerBritney Fransen <brfransen@gmail.com>2017-07-19 04:31:21 (GMT)
commitf7cd97d6e891499641b2a6773a817e556296ca27 (patch)
treeffa54e84b684049be2480735c18a1d96c1405b8e /abs
parent3bdb5be26490c0c9efcab0db9a509c1619caeca9 (diff)
downloadlinhes_pkgbuild-f7cd97d6e891499641b2a6773a817e556296ca27.zip
linhes_pkgbuild-f7cd97d6e891499641b2a6773a817e556296ca27.tar.gz
linhes_pkgbuild-f7cd97d6e891499641b2a6773a817e556296ca27.tar.bz2
python2-pathlib: initial inclusion. dep of flexget
Diffstat (limited to 'abs')
-rw-r--r--abs/core/python_modules/python2-pathlib/PKGBUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/core/python_modules/python2-pathlib/PKGBUILD b/abs/core/python_modules/python2-pathlib/PKGBUILD
new file mode 100644
index 0000000..954dfb4
--- /dev/null
+++ b/abs/core/python_modules/python2-pathlib/PKGBUILD
@@ -0,0 +1,21 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Contributor: vae77 <fernandogrd@yahoo.com.br>
+
+pkgname=python2-pathlib
+pkgver=1.0.1
+pkgrel=3
+pkgdesc="This module offers a set of classes featuring all the common operations on paths in an easy, object-oriented way"
+arch=('any')
+url="http://pathlib.readthedocs.org/en/${pkgver}/"
+license=('MIT')
+depends=('python2')
+makedepends=('python2-setuptools')
+source=("http://pypi.python.org/packages/source/p/pathlib/pathlib-${pkgver}.tar.gz")
+md5sums=('5099ed48be9b1ee29b31c82819240537')
+
+package() {
+ cd "$srcdir/pathlib-$pkgver"
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+ install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
+}