aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pyaes/APKBUILD
blob: a8b235df0dc4b367a9dcf5043982f1f3ab896eae (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
27
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-pyaes
pkgver=1.6.1
pkgrel=1
pkgdesc="Pure-Python Implementation of the AES block-cipher and common modes of operation"
url="https://github.com/ricmoo/pyaes"
arch="noarch"
license="MIT"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/p/pyaes/pyaes-$pkgver.tar.gz"
builddir="$srcdir/pyaes-$pkgver"

build() {
	python3 setup.py build
}

check() {
	python3 setup.py check
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="00ce3babf72ea18b0de369860cd884058c7c6f3bd8b961c3ff591ef7d3dc0a69fabad5311f61c9f91d2f1a480c8512e34eeced5ec7145ed9f963bf91c5f8838a  pyaes-1.6.1.tar.gz"