You are not logged in.
Pages: 1
Hi,
I updated/modified the PKGBUILD for Abiword 2.2. It depends on enchant, a spell checking wrapper library. Moreover, it now build a few plugins, which allow you to import image formats other than PNG and a few other nice things. Here are the PKGUILDs:
Enchant 1.1.3
pkgname=enchant
pkgver=1.1.3
pkgrel=1
pkgdesc="A wrapper library for spell checking"
url="http://www.abisource.com/enchant/"
license=""
depends=(aspell)
makedepends=()
conflicts=()
replaces=()
backup=()
install=
source=(http://puzzle.dl.sourceforge.net/sourceforge/abiword/$pkgname-$pkgver.tar.gz)
md5sums=(c95186755fe46b27a78d9a85fef2175c)
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
Abiword 2.2.1
pkgname=abiword
pkgver=2.2.1
pkgrel=1
pkgdesc="A fully-featured word processor"
url="http://www.abisource.com"
depends=('x-server' 'fribidi' 'libglade' 'popt' 'enchant')
source=(http://puzzle.dl.sourceforge.net/sourceforge/abiword/$pkgname-$pkgver.tar.bz2)
md5sums=('1e70a9ee1daee1206fb873bdcd35bcb9')
build() {
cd $startdir/src/$pkgname-$pkgver/abi
./configure --prefix=/usr --with-libxml2
make || return 1
make prefix=$startdir/pkg/usr install
cd $startdir/src/$pkgname-$pkgver/abiword-plugins
./configure --prefix=$startdir/pkg/usr --disable-all --with-bz2abw --with-bmp --with-jpeg --with-librsvg --with-wmf --with-html --with-kword --with-OpenWriter --with-wordperfect --with-xhtml --with-gdict --with-google --with-babelfish --with-aiksaurus
make || return 1
make prefix=$startdir/pkg/usr install
cd $startdir/pkg/usr/bin
ln -sf AbiWord-2.2 abiword
}
Please test and give feedback, either to me or to dorphell who is the maintainer.
Alex
Offline
When trying to build the abiword pkg I get like a thousand errors about libole2/ms-ole.c (code errors, like undeclared variables, etc)
And where were all the sportsmen who always pulled you though?
They're all resting down in Cornwall
writing up their memoirs for a paper-back edition
of the Boy Scout Manual.
Offline
Works fine for me. Can't wait until the official package is released
If I have the gift of prophecy and can fathom all mysteries and all knowledge, and if I have a faith that can move mountains, but have not love, I am nothing. 1 Corinthians 13:2
Offline
by adding
--enable-gnome
to the ./configure line for abiword, you get a build that uses gnomeprintui for the print dialogue. Maybe affects other thins, too?
Offline
Pages: 1