# $Id$
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: Jonathan Liu <net147@gmail.com>

pkgname=python2-suds
pkgver=0.4
pkgrel=4
pkgdesc="A lightweight SOAP python client"
arch=('any')
url="https://fedorahosted.org/suds/"
license=('LGPL')
depends=('python2')
makedepends=('python2-setuptools')
source=("https://fedorahosted.org/releases/s/u/suds/python-suds-${pkgver}.tar.gz")
md5sums=('05523dfd3fc0de3f19dde4aca5dd17e9')

build() {
  cd python-suds-${pkgver}
  python2 setup.py build
}

package() {
  cd python-suds-${pkgver}
  python2 setup.py install --root="${pkgdir}" -O1
}

# vim:set ts=2 sw=2 et:
