20 lines
521 B
Plaintext
20 lines
521 B
Plaintext
# Description: Parse dependency links
|
|
# URL: https://github.com/dephell/dephell_links
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-attrs
|
|
|
|
name=python3-dephell-links
|
|
version=0.1.5
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/d/dephell_links/dephell_links-$version.tar.gz)
|
|
|
|
build() {
|
|
cd dephell_links-$version
|
|
find . -name \*.pyc -delete
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|