forked from ports/contrib
19 lines
561 B
Plaintext
19 lines
561 B
Plaintext
# Description: Find project modules and data files (packages and package_data for setup.py)
|
|
# URL: https://github.com/dephell/dephell_discover
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-attrs
|
|
|
|
name=python3-dephell-discover
|
|
version=0.2.10
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/d/dephell_discover/dephell_discover-$version.tar.gz)
|
|
|
|
build() {
|
|
cd dephell_discover-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|