forked from ports/contrib
20 lines
567 B
Plaintext
20 lines
567 B
Plaintext
|
# Description: Extract meta information from setup.py
|
||
|
# URL: https://github.com/dephell/dephell_setuptools
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools
|
||
|
|
||
|
name=python3-dephell-setuptools
|
||
|
version=0.2.1
|
||
|
release=1
|
||
|
source=(https://files.pythonhosted.org/packages/source/d/dephell_setuptools/dephell_setuptools-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd dephell_setuptools-$version
|
||
|
find . -name \*.pyc -delete
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build \
|
||
|
-O1
|
||
|
}
|