blob: 5bba3fd2f39ebf845ef236ad53600a77f7d34b1c (
plain)
1 # Description: Find project modules and data files (packages and package_data for setup.py)
2 # URL: https://github.com/dephell/dephell_discover
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-attrs
5
6 name=python3-dephell-discover
7 version=0.2.10
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/d/dephell_discover/dephell_discover-$version.tar.gz)
10
11 build() {
12 cd dephell_discover-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr \
15 --root=$PKG \
16 -O1 \
17 --skip-build
18 }
|