core/pycrypto/PKGBUILD

20 lines
618 B
Bash
Raw Normal View History

2010-04-07 03:23:26 +08:00
# $Id: PKGBUILD 72744 2010-03-19 11:35:50Z allan $
2010-03-14 23:48:48 +08:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Kritoke <kritoke@gamebox.net>
pkgname=pycrypto
pkgver=2.0.1
2010-04-07 03:23:26 +08:00
pkgrel=4
2010-03-14 23:48:48 +08:00
pkgdesc="A collection of cryptographic algorithms and protocols, implemented for use from Python."
arch=(i686 x86_64)
depends=('python' 'gmp')
url="http://www.amk.ca/python/code/crypto.html"
license=(GPL)
source=(http://www.amk.ca/files/python/crypto/${pkgname}-${pkgver}.tar.gz)
md5sums=('4d5674f3898a573691ffb335e8d749cd')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
python setup.py build install --root=${startdir}/pkg
}