mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
21 lines
694 B
Bash
21 lines
694 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor : Todd Maynard <arch@toddmaynard.com>
|
|
|
|
pkgname=python-genshi
|
|
pkgver=0.5.1
|
|
pkgrel=3
|
|
pkgdesc="Python toolkit for stream-based generation of output for the web."
|
|
url="http://genshi.edgewall.org/"
|
|
license=("BSD")
|
|
arch=('i686' 'x86_64')
|
|
depends=('python')
|
|
makedepends=('setuptools')
|
|
source=("http://ftp.edgewall.com/pub/genshi/Genshi-$pkgver.tar.bz2")
|
|
md5sums=('822942bbc3109da9f6b472eb8ea4e3a4')
|
|
|
|
build() {
|
|
cd $startdir/src/Genshi-${pkgver}
|
|
python setup.py install --root=$startdir/pkg && \
|
|
install -D -m0644 COPYING $startdir/pkg/usr/share/licenses/python-genshi/COPYING
|
|
}
|