blob: bc38e950a09851c839e5a30ff6d158b04174b0ed (
plain)
1 # Description: Library and a set of tools for reading and converting Apple Keynote presentations
2 # URL: https://wiki.documentfoundation.org/DLP/Libraries/libetonyek
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: liblangtag librevenge glm mdds
5
6 name=libetonyek
7 version=0.1.9
8 release=4
9 source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz
10 libetonyek-0.1.9-boost-1.73.patch)
11
12 build() {
13 cd $name-$version
14 ## https://gitweb.gentoo.org/repo/gentoo.git/tree/app-text/libetonyek/files/libetonyek-0.1.9-boost-1.73.patch
15 patch -Np1 -i $SRC/libetonyek-0.1.9-boost-1.73.patch
16 ./configure --prefix=/usr \
17 --with-mdds=1.5 \
18 --without-docs
19 make
20 make DESTDIR=$PKG install
21 }
|