mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:52:15 +08:00
22 lines
681 B
Bash
22 lines
681 B
Bash
# Maintainer: Inkane <neoinkaneglade@aol.com>
|
|
# Contributor: aur2ccr (http://ddg.gg/?q=!ccr+aur2ccr)
|
|
# Contributor: Sebastian Wiesner <lunaryorn googlemail com>
|
|
# Contributor: Igor Ramos Tiburcio <irtigor@yahoo.com.br>
|
|
|
|
pkgname=python2-py
|
|
pkgver=1.4.15
|
|
pkgrel=1
|
|
pkgdesc="Python rapid development tools"
|
|
arch=('any')
|
|
url="http://pylib.org"
|
|
license=('MIT')
|
|
makedepends=("python-distribute")
|
|
source=("http://pypi.python.org/packages/source/p/py/py-$pkgver.tar.gz")
|
|
md5sums=('b5afc772d242d2dbcf7a2fcf3080a799')
|
|
|
|
build() {
|
|
cd "$srcdir/py-$pkgver"
|
|
python2 setup.py install --root="$pkgdir" -O1 || return 1
|
|
install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
|
}
|