summaryrefslogtreecommitdiff
path: root/pcr/python-slugify/PKGBUILD
blob: e86c824d441a427d6b3ffe769279062b28788d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Andreas Grapentin <oaken-source@parabola.nu>

_pkgname=python-slugify
pkgname=(python{,2}-${_pkgname#python-})
pkgver=2.0.1
pkgrel=1
pkgdesc="A Python Slugify application that handles Unicode"
arch=(any)
url="https://pypi.python.org/pypi/$_pkgname"
license=('MIT')

_depends=()
makedepends=(python{,2}-setuptools)
source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
md5sums=('4e2fd2c958b87d28e1cafaf2156ef83e')

_package() {
  depends=("$1" "${_depends[@]/#/$1-}")
  cd "$srcdir"/$_pkgname-$pkgver
  $1 setup.py install --root="$pkgdir"
}

for _pkg in "${pkgname[@]}"; do
  eval "package_$_pkg () { _package ${_pkg%%-*}; }"
done