mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
714 B
Bash
Executable file
23 lines
714 B
Bash
Executable file
# $Id: PKGBUILD 1500 2009-08-24 19:17:23Z ibiru $
|
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.br>
|
|
|
|
pkgname=python-pyro
|
|
pkgver=3.9.1
|
|
pkgrel=1
|
|
pkgdesc="Python Remote Objects"
|
|
arch=('i686' 'x86_64')
|
|
license=('MIT')
|
|
depends=('python>=2.4')
|
|
source=(http://downloads.sourceforge.net/sourceforge/pyro/Pyro-${pkgver}.tar.gz pyro-unattend.patch)
|
|
md5sums=('fd2fb19d5690825690e1b962a50afdc9'
|
|
'7652e1163c0529b0b4f6c6d0088767c9')
|
|
url="http://pyro.sourceforge.net"
|
|
|
|
build() {
|
|
cd $srcdir/Pyro-${pkgver}
|
|
#patch -p1 < ../pyro-unattend.patch || return 1
|
|
|
|
python setup.py install --root=$pkgdir || return 1
|
|
|
|
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
|
|
}
|