summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pcr/python-slugify/PKGBUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/pcr/python-slugify/PKGBUILD b/pcr/python-slugify/PKGBUILD
new file mode 100644
index 000000000..5a23850e4
--- /dev/null
+++ b/pcr/python-slugify/PKGBUILD
@@ -0,0 +1,22 @@
+
+_pkgname=python-slugify
+pkgname=(python-${_pkgname#python-} python2-${_pkgname#python-})
+pkgver=1.2.5
+pkgrel=1
+pkgdesc="A Python Slugify application that handles Unicode"
+arch=('any')
+url="https://pypi.python.org/pypi/$_pkgname"
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("https://files.pythonhosted.org/packages/70/c1/98bfb2c981787dcec4613c5da2c17d6f54613935b0e3a877e87a9fa974e4/$_pkgname-$pkgver.tar.gz")
+sha256sums=('5dbb360b882b2dabe0471a1a92f604504d83c2a73c71f2098d004ab62e695534')
+
+_package(){
+ depends=($1)
+ cd "$srcdir"/$_pkgname-$pkgver
+ $1 setup.py install --root="$pkgdir"
+}
+
+for pkg in "${pkgname[@]}"; do
+ eval "package_$pkg () { _package ${pkg%%-*}; }"
+done