blob: a56d9e564bcfa17c81f7405d4f52dff4d60dc114 (
plain)
1 # Description: RFC 5451/7001/7601 Authentication-Results Headers generation and parsing for Python3
2 # URL: https://launchpad.net/authentication-results-python
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-authres
7 version=1.2.0
8 release=1
9 source=(https://launchpad.net/authentication-results-python/${version::3}/$version/+download/authres-$version.tar.gz)
10
11 build() {
12 cd authres-$version
13 python3 setup.py build
14 python3 setup.py install \
15 --root=$PKG \
16 --optimize=1 \
17 --skip-build
18 }
|