blob: 5650efa755bd8fbc37757b0e6be8c610152d86cc (
plain)
1 # Description: Bump project version like a pro
2 # URL: https://github.com/dephell/dephell_versioning
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-packaging
5
6 name=python3-dephell-versioning
7 version=0.1.2
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/d/dephell_versioning/dephell_versioning-$version.tar.gz)
10
11 build() {
12 cd dephell_versioning-$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 }
|