Hm, jetzt steht der Thread auf "Gelöst", aber vielleicht liest ihn ja doch noch wer.
Es wäre nämlich schön, wenn jemand das folgende PKGBUILD mal testen könnte:
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=abiword-extras
pkgver=2.6.8
pkgrel=1
pkgdesc="Cliparts, icons, dictionaries for abiword"
url="http://www.abisource.com/downloads/abiword/2.6.8/source/"
arch=('i686' 'x86_64')
license=('GPL')
depends=('abiword')
source=(http://www.abisource.com/downloads/abiword/2.6.8/source/$pkgname-$pkgver.tar.gz
configure.ac.patch)
md5sums=('e3cfff6ad4cda3e4200a75fd2665857a' 'fc297f5597e014776ac82424aaf3d3a0')
build() {
cd $srcdir/$pkgname-$pkgver
patch configure.ac $srcdir/configure.ac.patch || return 1
export ABIWORD_EXTRAS_PKGDATADIR=/usr/share/$pkgname
./autogen.sh || return 1
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}
Benötigt wird noch die Datei configure.ac.patch (ins selbe Verzeichnis wie das PKGBUILD kopieren):
9,12d8
< abi_pkg='abiword-2.6'
< PKG_CHECK_MODULES([ABIWORD_EXTRAS_DEPS], [ "$abi_pkg" ], [
< ABIWORD_EXTRAS_PKGDATADIR=`$PKG_CONFIG --variable=pkgdatadir $abi_pkg`
< ])