mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
645 B
Bash
21 lines
645 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
|
||
|
# Previous Maintainer: Callan Barrett <wizzomafizzo@gmail.com>
|
||
|
# Contributor: Ricardo Honorato <rikardo.horo@gmail.com>
|
||
|
|
||
|
pkgname=zsi
|
||
|
pkgver=2.0
|
||
|
pkgrel=3
|
||
|
pkgdesc="a Python package that provides an implementation of SOAP messaging"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://pywebsvcs.sourceforge.net/zsi.html"
|
||
|
license=('GPL')
|
||
|
depends=('pyxml')
|
||
|
source=(http://downloads.sourceforge.net/pywebsvcs/ZSI-$pkgver.tar.gz)
|
||
|
md5sums=('bb706337cafe9e2201b06b1bce71ca0f')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/ZSI-$pkgver"
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
}
|