diff options
author | Zach van Rijn <me@zv.io> | 2022-11-03 18:11:15 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2022-11-03 18:15:03 +0000 |
commit | eced2938ac3c628ac5c5ea8d1b8a7238452107cd (patch) | |
tree | 15ba474b5db79b3a6c54cadbcd9062100aab6ec3 /user/libetonyek | |
parent | 40a19895c85c24910c631b6aaf5f0b5bafc7833a (diff) | |
download | packages-eced2938ac3c628ac5c5ea8d1b8a7238452107cd.tar.gz packages-eced2938ac3c628ac5c5ea8d1b8a7238452107cd.tar.bz2 packages-eced2938ac3c628ac5c5ea8d1b8a7238452107cd.tar.xz packages-eced2938ac3c628ac5c5ea8d1b8a7238452107cd.zip |
user/libetonyek: use explicit MDDS version. fixes #827.
We need to be explicit with the MDDS version (major.minor only).
The default of 1.5 only worked by coincidence, and there does not
appear to be a mechanism to automatically detect a compatible one.
This (0.1.10) is the latest release as of writing.
./configure.ac:
AS_HELP_STRING([--with-mdds=1.5|1.4|1.2|1.0|0.x],
[Specify which version of mdds to use (1.5 is the default)]),
Diffstat (limited to 'user/libetonyek')
-rw-r--r-- | user/libetonyek/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/user/libetonyek/APKBUILD b/user/libetonyek/APKBUILD index cef1956fe..feada550a 100644 --- a/user/libetonyek/APKBUILD +++ b/user/libetonyek/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Max Rees <maxcrees@me.com> pkgname=libetonyek pkgver=0.1.10 -pkgrel=0 +pkgrel=1 pkgdesc="Import filter and tools for Apple iWork documents" url="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" arch="all" @@ -25,7 +25,8 @@ build() { --infodir=/usr/share/info \ --localstatedir=/var \ --disable-werror \ - --disable-static + --disable-static \ + --with-mdds=2.0 make } |