aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/py-des/APKBUILD
blob: 6ff5dcc966e26c322ad71baa06fd9bcd047a6e28 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py-des
_pkgname=pyDes
pkgver=2.0.1
pkgrel=0
pkgdesc="A Python implementation of DES and TRIPLE DES encryption algorithms"
url="http://twhiteman.netfirms.com/des.html"
arch="noarch"
license="MIT"
depends="python"
depends_dev=""
makedepends="python-dev py-setuptools"
install=""
subpackages=""
source="http://twhiteman.netfirms.com/pyDES/$_pkgname-$pkgver.zip"

_builddir="$srcdir"/$_pkgname-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	python setup.py build || return 1
}

package() {
	cd "$_builddir"
	python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}

md5sums="90f06a24a1ee73fb0e235571d51c287a  pyDes-2.0.1.zip"
sha256sums="9cc6e509f627ef1c2d318730d22f1a33f23b41e1ec223b55a6420f2861266d76  pyDes-2.0.1.zip"
sha512sums="d9107d532801ff2eb096eeb606c1b81fd68a76fccffdf095a6a2a79bd19815b4c366549989b6f4508c99a2f9afb063eceb7b0702e504ebb4d73dc8175057cb28  pyDes-2.0.1.zip"