19 lines
537 B
Plaintext
19 lines
537 B
Plaintext
# Description: Manage OSS licenses: retrieve information, generate
|
|
# URL: https://github.com/dephell/dephell_licenses
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-attrs python3-requests
|
|
|
|
name=python3-dephell-licenses
|
|
version=0.1.7
|
|
release=1
|
|
source=(https://pypi.io/packages/source/d/dephell-licenses/dephell-licenses-$version.tar.gz)
|
|
|
|
build() {
|
|
cd dephell-licenses-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|