updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / python2-boto / PKGBUILD
blob0e6529680decf5fce7ef1fb39bab6988d72659e3
1 # Contributor: Wes Brown <wesbrown18@gmail.com>
2 pkgname=python2-boto
3 pkgver=2.1.1
4 pkgrel=2
5 pkgdesc="This is the Python interface to the Amazon Web Services."
6 arch=('i686' 'x86_64')
7 url="http://code.google.com/p/boto/"
8 license=('MIT')
9 depends=('python2')
10 source=("http://boto.googlecode.com/files/boto-${pkgver}.tar.gz")
11 md5sums=('5528f3010c42dd0ed7b188a6917295f1')
13 build() {
14   cd "$srcdir/boto-${pkgver}"
15   python2 setup.py build install --root="${pkgdir}" || return 1
18 # vim:set ts=2 sw=2 et: