blob: c2d66344d07f1e1b1715af30b17e650d99d4cd4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: Thomas Haider <t.haider@deprecate.de>
# Contributor: Filip S. Adamsen <fsa [at] fsadev [dot] com>
# Contributor: Samed Beyribey <ras0ir@eventualis.org>
pkgname=python2-authres
_pkgname=authentication-results-python
pkgver=0.602
pkgrel=1
pkgdesc="Python2 Authentication-Results Headers generation and parsing"
arch=('any')
url="http://launchpad.net/authentication-results-python"
license=('Apache')
depends=('python2')
conflicts=('python-authres')
source=(http://launchpad.net/$_pkgname/trunk/$pkgver/+download/authres-$pkgver.tar.gz)
build() {
cd "$srcdir/authres-$pkgver"
python2 setup.py build
}
package() {
cd "$srcdir/authres-$pkgver"
python2 setup.py install --root=$pkgdir --optimize=1
}
sha256sums=('41cea7fcc3387e381b520053dbbba1825598b6cb9d45c505ae466d7a2a27edc3')
|