17 lines
415 B
Plaintext
17 lines
415 B
Plaintext
# Description: Python Build Reasonableness
|
|
# URL: https://pypi.python.org/pypi/pbr
|
|
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
|
|
#
|
|
# Depends on: setuptools
|
|
|
|
name=pbr
|
|
version=0.8.0
|
|
release=1
|
|
source=(http://pypi.python.org/packages/source/p/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py install --root=$PKG
|
|
chown -R root:root $PKG
|
|
}
|