blob: 4d3a26bbd9c05d898b106cca3a485d9237d07da1 (
plain)
1 # Description: Manage OSS licenses: retrieve information, generate
2 # URL: https://github.com/dephell/dephell_licenses
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-attrs python3-requests
5
6 name=python3-dephell-licenses
7 version=0.1.7
8 release=1
9 source=(https://pypi.io/packages/source/d/dephell-licenses/dephell-licenses-$version.tar.gz)
10
11 build() {
12 cd dephell-licenses-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 --skip-build \
17 -O1
18 }
|