blob: 466112b93a11af4c820618a9d11fdb445c0ae631 (
plain)
1 # Description: A library implementing the 'SemVer' scheme.
2 # URL: https://github.com/rbarrois/python-semanticversion
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-setuptools
5
6 name=python3-semantic-version
7 version=2.8.5
8 release=1
9 source=(https://github.com/rbarrois/python-semanticversion/archive/$version/python-semanticversion-$version.tar.gz)
10
11 build() {
12 cd python-semanticversion-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --prefix=/usr --root=$PKG --optimize=1 --skip-build
15 }
|