33 lines
981 B
Bash
33 lines
981 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: AndyRTR <andyrtr@archlinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: Yue
|
|
|
|
pkgname=libetonyek
|
|
pkgver=0.1.12
|
|
pkgrel=1
|
|
pkgdesc='Library and a set of tools for reading and converting Apple Keynote presentations'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek"
|
|
license=('MPL-2.0')
|
|
depends=('libxml2' 'zlib' 'librevenge' 'liblangtag' 'gcc-libs' 'glibc')
|
|
makedepends=('boost' 'cppunit' 'gperf' 'doxygen' 'glm' 'mdds')
|
|
source=(https://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('b9fa82fbeb8cb7a701101060e4f3e1e4ef7c38f574b2859d3ecbe43604c21f83')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --with-mdds=2.1 --build=${CHOST}
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|