forked from ports/contrib
22 lines
717 B
Plaintext
22 lines
717 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.9
|
|
release=4
|
|
source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz
|
|
libetonyek-0.1.9-boost-1.73.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
## https://gitweb.gentoo.org/repo/gentoo.git/tree/app-text/libetonyek/files/libetonyek-0.1.9-boost-1.73.patch
|
|
patch -Np1 -i $SRC/libetonyek-0.1.9-boost-1.73.patch
|
|
./configure --prefix=/usr \
|
|
--with-mdds=1.5 \
|
|
--without-docs
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|