diff options
| author | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-07-12 11:40:17 +0000 |
|---|---|---|
| committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-07-12 11:59:04 +0000 |
| commit | 637744fe1169c0527be49cefac22c8a3cb184eba (patch) | |
| tree | d7a773fac7ce46abcf15259e0a61025ad92a8fa6 /community/libqxp | |
| parent | 699be855c07b7a138a50e30d47df21885f47d709 (diff) | |
| download | aports-637744fe1169c0527be49cefac22c8a3cb184eba.tar.bz2 aports-637744fe1169c0527be49cefac22c8a3cb184eba.tar.xz | |
community/libqxp: new aport
Library for parsing QuarkXPress documents
Needed for Libreoffice 6
Diffstat (limited to 'community/libqxp')
| -rw-r--r-- | community/libqxp/APKBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/libqxp/APKBUILD b/community/libqxp/APKBUILD new file mode 100644 index 0000000000..ac8de35612 --- /dev/null +++ b/community/libqxp/APKBUILD @@ -0,0 +1,33 @@ +# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> +pkgname=libqxp +pkgver=0.0.1 +pkgrel=0 +pkgdesc="Library that parses the file format of QuarkXPress documents." +url="https://wiki.documentfoundation.org/DLP/Libraries/libqxp" +arch="all" +license="MPL-2.0" +makedepends="librevenge-dev icu-dev doxygen" +subpackages="$pkgname-dev $pkgname-doc" +source="https://dev-www.libreoffice.org/src/libqxp/libqxp-$pkgver.tar.xz" +builddir="$srcdir"/$pkgname-$pkgver + +build() { + cd "$builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make +} + +check() { + cd "$builddir" + make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install +} + +sha512sums="a03a9ada658a92f4d985cad91d467b3916334c74dc26c1e4de89e3929e0135ca0e9c7e7e18ce616ef56a67863ec19c2638494400785849017f9a4776df07c607 libqxp-0.0.1.tar.xz" |
