PKGBUILDs/community/pyrtf/PKGBUILD

19 lines
599 B
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: William Rea <sillywilly@gmail.com>
# Contributor: Andrew Conkling <andrewski@fr.st>
pkgname=pyrtf
pkgver=0.45
pkgrel=2
pkgdesc="A set of Python classes that make it possible to produce RTF documents from Python programs."
arch=('i686' 'x86_64')
url="http://pyrtf.sourceforge.net"
license=('GPL')
depends=('python')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/PyRTF-$pkgver.tar.gz)
md5sums=('6da40728b27c6a0150291f19c3f2ceb9')
build() {
cd $startdir/src/PyRTF-$pkgver
python setup.py install --root=$startdir/pkg
}