16 lines
514 B
Plaintext
16 lines
514 B
Plaintext
# Description: Python implementation of subunit test streaming protocol
|
|
# URL: http://pypi.python.org/pypi/python-subunit
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on: python
|
|
|
|
name=py-subunit
|
|
version=1.0.0
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/p/python-${name#*-}/python-${name#*-}-$version.tar.gz)
|
|
|
|
build () {
|
|
cd python-${name#*-}-$version
|
|
python setup.py install --prefix=/usr --root="$PKG" --optimize=1
|
|
rm -rf "$PKG"/usr/lib/python*/site-packages/*.egg-info
|
|
}
|