mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
546 B
Bash
20 lines
546 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org>
|
||
|
# Contributor: Erol V. Aktay <e.aktay@gmail.com>
|
||
|
|
||
|
pkgname=python-webpy
|
||
|
pkgver=0.32
|
||
|
pkgrel=1
|
||
|
pkgdesc="A simple but powerful web framework for python"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://webpy.org/"
|
||
|
license=('Public Domain')
|
||
|
depends=('python')
|
||
|
source=(http://webpy.org/static/web.py-$pkgver.tar.gz)
|
||
|
md5sums=('ea70fcf5fe5a7365454cf4a47e093221')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir"/webpy
|
||
|
python setup.py install --root="$pkgdir" || return 1
|
||
|
}
|