desktop/python-unidecode/PKGBUILD
2017-11-25 16:42:10 +01:00

44 lines
1.2 KiB
Bash

# Maintainer: UtG <utg[dot]chakra.linux[at]gmail[dot]com>
# Contributor: Matias Moreno <mmoreno80@gmail.com>
pkgbase=python-unidecode
pkgname=('python2-unidecode' 'python3-unidecode')
_pkgname=Unidecode
pkgver=0.04.21
pkgrel=1
pkgdesc='ASCII transliterations of Unicode text.'
arch=('x86_64')
license=('GPL')
url="http://pypi.python.org/pypi/Unidecode/"
makedepends=('python2-setuptools' 'python3-setuptools')
options=('!emptydirs')
source=("python-unidecode-${pkgver}.tar.gz::https://github.com/avian2/unidecode/archive/release-${pkgver}.tar.gz")
sha256sums=('94aae5e8bed7a7646ba3a206f3fa2020464b9f88cef1853bc5cc580be15a3a3b')
prepare() {
cp -r {,python-}unidecode-release-${pkgver}
mv {,python2-}unidecode-release-${pkgver}
}
build() {
for py in python{,2}; do
pushd ${py}-unidecode-release-${pkgver}
${py} setup.py build
popd
done
}
package_python2-unidecode() {
cd python2-unidecode-release-${pkgver}
python2 setup.py install --root="${pkgdir}" --optimize='1'
cd $pkgdir/usr/bin
mv unidecode unidecode2
ln -s unidecode2 unidecode
}
package_python3-unidecode() {
cd python-unidecode-release-${pkgver}
python3 setup.py install --root="${pkgdir}" --optimize='1'
mv unidecode unidecode3
}