# abiword, http://www.abisource.com

name=abiword
version=2.6.3
release=1
source=(http://www.abisource.com/downloads/abiword/$version/source/$name-$version.tar.gz)

build() {
    cd $name-$version
    sed -i 's/USE_NLS=yes/USE_NLS=no/
        s/ENABLE_NLS 1/ENABLE_NLS 0/' configure
    ./configure \
	--prefix=/usr \
	--mandir=/usr/share/man \
	--infodir=/usr/share/info \
	--disable-nls
    make
    make DESTDIR=$PKG install
}
