mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-05 07:47:14 +08:00
19 lines
511 B
Bash
19 lines
511 B
Bash
# Maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributor: Allan McRae <allan@archlinux.org>
|
|
|
|
pkgname=python2-six
|
|
pkgver=1.6.1
|
|
pkgrel=1
|
|
pkgdesc="Python 2 and 3 compatibility utilities"
|
|
arch=('x86_64')
|
|
url="http://pypi.python.org/pypi/six/"
|
|
license=('custom')
|
|
depends=('python2')
|
|
source=(http://pypi.python.org/packages/source/s/six/six-$pkgver.tar.gz)
|
|
md5sums=('07d606ac08595d795bf926cc9985674f')
|
|
|
|
package() {
|
|
cd "$srcdir/six-$pkgver"
|
|
python2 setup.py install --root "${pkgdir}" --optimize=1
|
|
}
|