blob: e39c041464c57889f13d8ece0e6b6f0ba02699e8 (
plain)
1 # Description: a library that parses the file format of QuarkXPress documents
2 # URL: https://wiki.documentfoundation.org/DLP/Libraries/libqxp
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: librevenge icu
5
6 name=libqxp
7 version=0.0.2
8 release=1
9 source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13 ./configure --prefix=/usr \
14 --without-docs
15 make
16 make DESTDIR=$PKG install
17 }
|