19 lines
515 B
Plaintext
19 lines
515 B
Plaintext
# Description: Library and a set of tools for reading and converting Apple Keynote presentations
|
|
# URL: https://wiki.documentfoundation.org/DLP/Libraries/libetonyek
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: liblangtag librevenge glm mdds
|
|
|
|
name=libetonyek
|
|
version=0.1.10
|
|
release=1
|
|
source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--with-mdds=1.5 \
|
|
--without-docs
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|