# $Id: PKGBUILD 95284 2013-08-08 19:29:43Z jlichtblau $ # Maintainer: Jaroslav Lichtblau # Contributor: Alexander Fehr # Contributor: froggie pkgname=unrtf pkgver=0.21.5 pkgrel=1 pkgdesc="Command-line program which converts RTF documents to other formats" arch=('i686' 'x86_64') url="http://www.gnu.org/software/unrtf/unrtf.html" license=('GPL3') depends=('glibc') changelog=$pkgname.changelog source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) sha256sums=('b6b1afd301dcec1cf377476154fc22ed0ac73aee2b7d56a42e2279cced3943c2') build() { cd ${srcdir}/$pkgname-$pkgver ./configure --prefix=/usr make } package() { cd ${srcdir}/$pkgname-$pkgver make DESTDIR=${pkgdir} install }