mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
19 lines
599 B
Bash
19 lines
599 B
Bash
|
# $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
|
||
|
}
|