PKGBUILDs/extra/libots/PKGBUILD
2009-10-09 21:23:22 -05:00

23 lines
657 B
Bash

# $Id: PKGBUILD 27807 2009-02-26 04:14:03Z eric $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=libots
pkgver=0.5.0
pkgrel=1
pkgdesc="Open Text Summarizer"
arch=('i686' 'x86_64')
url="http://libots.sourceforge.net/"
license=('GPL')
depends=('libxml2' 'glib2' 'popt')
options=('!libtool' '!makeflags')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/ots-${pkgver}.tar.gz)
md5sums=('1e140a4bf9d720b4339a5c2bdf4976e8')
build() {
cd ${srcdir}/ots-${pkgver}
touch gtk-doc.make
sed -i 's/0.4.2/0.5.0/' configure || return 1
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=${pkgdir} install || return 1
}