blob: ea2482e247988f6acfd45b7038416ac231b3ebb0 (
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=3
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 --with-mdds=1.5 \
15 --without-docs
16 make
17 make DESTDIR=$PKG install
18 }
|