mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
657 B
Bash
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
|
|
}
|