mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
789 B
Bash
24 lines
789 B
Bash
# $Id: PKGBUILD 31737 2009-03-28 04:16:53Z eric $
|
|
# Maintainer: Juergen Hoetzel <juergen@archlinux.org>
|
|
# Contributor: Paulius Palevicius <paulius@birzai.com>
|
|
|
|
pkgname=catdoc
|
|
pkgver=0.94.2
|
|
pkgrel=2
|
|
pkgdesc="A convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text"
|
|
arch=(i686 x86_64)
|
|
url="http://www.wagner.pp.ru/~vitus/software/catdoc/"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
optdepends=('tk: for using wordview')
|
|
options=('!makeflags')
|
|
source=(http://ftp.wagner.pp.ru/pub/catdoc/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('243e1680bb3e703616f5adecfee24491')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --with-wish=/usr/bin/wish || return 1
|
|
make || return 1
|
|
make installroot=$pkgdir mandir=/usr/share/man/man1 install || return 1
|
|
}
|
|
# vim: ts=2 sw=2 et ft=sh
|