18 lines
449 B
Plaintext
18 lines
449 B
Plaintext
# Description: a library that parses the file format of AbiWord documents
|
|
# URL: https://wiki.documentfoundation.org/DLP/Libraries/libabw
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: librevenge libxml2
|
|
|
|
name=libabw
|
|
version=0.1.3
|
|
release=2
|
|
source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--without-docs
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|