blob: 2c00fd58e0faa0af823874fb6df5255f09436b4c (
plain)
1 # Description: Find changelog for github repository, local dir, parse changelog
2 # URL: https://github.com/dephell/dephell_changelogs
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-requests
5
6 name=python3-dephell-changelogs
7 version=0.0.1
8 release=1
9 source=(https://pypi.io/packages/source/d/dephell_changelogs/dephell_changelogs-$version.tar.gz)
10
11 build() {
12 cd dephell_changelogs-$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 }
|