updated on Tue Jan 10 12:02:00 UTC 2012
[aur-mirror.git] / python-bitstring / PKGBUILD
blob06d43004012422eea9063398e628bb19413eb677
1 # Maintainer: nblock <nblock [/at\] archlinux DOT us>
2 # Contributor: Thomas Conneely <tc116 at le dot ac dot uk>
4 pkgname=python-bitstring
5 pkgver=2.2.0
6 pkgrel=1
7 pkgdesc='Python module designed to help make the creation, manipulation and analysis of binary data as simple and natural as possible'
8 arch=('any')
9 url="http://code.google.com/p/python-bitstring/"
10 license=('MIT')
11 depends=('python')
12 makedepends=('unzip')
13 options=(!emptydirs)
14 source=(http://python-bitstring.googlecode.com/files/bitstring-$pkgver.zip)
15 md5sums=('d331a15c494df5d23b8f8903ed7aa66d')
17 build() {
18   cd ${srcdir}/bitstring-${pkgver}
19   
20   #get the license file
21   python -c "import bitstring; print(bitstring.__licence__)" >> ${srcdir}/LICENSE
22   
23   python setup.py install --root=${pkgdir}/ --optimize=1
24   
25   #install license
26   install -D -m644 ${srcdir}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
29 # vim:set ts=2 sw=2 et: