core/libetonyek/PKGBUILD

28 lines
692 B
Bash
Raw Normal View History

2014-10-07 04:57:04 +08:00
pkgname=libetonyek
2016-02-18 11:15:02 +08:00
pkgver=0.1.6
pkgrel=2
2014-10-07 04:57:04 +08:00
pkgdesc='Library and a set of tools for reading and converting Apple Keynote presentations'
arch=('x86_64')
url='http://www.freedesktop.org/wiki/Software/libetonyek/'
license=('MPL')
2016-02-18 11:15:02 +08:00
depends=('libxml2' 'zlib' 'libwpd' 'boost-libs' 'librevenge' 'liblangtag')
makedepends=('boost' 'cppunit' 'gperf' 'doxygen' 'glm' 'mdds')
2015-05-25 06:51:04 +08:00
source=(http://dev-www.libreoffice.org/src/${pkgname}/${pkgname}-${pkgver}.tar.xz)
2016-02-18 11:15:02 +08:00
md5sums=('dfe25b0c7739283a5c61a930ea1f9bf8')
2014-10-07 04:57:04 +08:00
build() {
2015-05-25 06:51:04 +08:00
cd ${pkgname}-${pkgver}
2014-10-07 04:57:04 +08:00
./configure --prefix=/usr
make
}
check() {
2015-05-25 06:51:04 +08:00
cd ${pkgname}-${pkgver}
2014-10-07 04:57:04 +08:00
make check
}
package() {
2015-05-25 06:51:04 +08:00
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
2014-10-07 04:57:04 +08:00
}