mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 14:57:20 +08:00
23 lines
732 B
Bash
23 lines
732 B
Bash
|
#
|
||
|
# Chakra Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
||
|
|
||
|
pkgname=python2-pycountry
|
||
|
pkgver=0.14.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="ISO country, subdivision, language, currency and script definitions and their translations"
|
||
|
arch=('any')
|
||
|
url="http://pypi.python.org/pypi/pycountry"
|
||
|
license=('LGPL2')
|
||
|
provides=('python-pycountry')
|
||
|
replaces=('python-pycountry')
|
||
|
conflicts=('python-pycountry')
|
||
|
depends=('python-lxml' 'python-distribute')
|
||
|
source=(http://pypi.python.org/packages/source/p/pycountry/pycountry-$pkgver.zip)
|
||
|
md5sums=('4ec2e54b05a93b86c1aeb1a28da318cf')
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/pycountry-${pkgver}
|
||
|
python2 setup.py install --root=$pkgdir/ --optimize=1
|
||
|
}
|