updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / python2-pydes / PKGBUILD
blobebae7d2ca3dc08a260f3c0f6cbf5c2511b126f0f
1 # Maintainer: Emmanuel Gras <gras.emmanuel@gmail.com>
3 pkgname=python2-pydes
4 pkgver=2.0.1
5 pkgrel=2
6 pkgdesc="This is a pure python implementation of the DES encryption algorithm. It is in pure python to avoid portability issues, since most DES implementations are programmed in C (for performance reasons)."
7 arch=('i686' 'x86_64')
8 url="http://twhiteman.netfirms.com/des.html"
9 license=('Public Domain')
10 depends=('python2')
11 makedepends=()
12 source=(http://twhiteman.netfirms.com/pyDES/pyDes-2.0.1.tar.gz)
13 md5sums=()
14 conflicts=()
17 build() {
18   cd $srcdir/pyDes-$pkgver
19   python2 setup.py build
22 package() {
23   cd $srcdir/pyDes-$pkgver
24   python2 setup.py install --prefix=$pkgdir/usr
26 md5sums=('a6a157177de6ed2e76977cd8172198d9')