diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-23 03:40:09 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-23 03:40:09 +0000 |
commit | 1a04b89cbb8e27e4622005c896745498af51ef45 (patch) | |
tree | 5991cef855e2a5ae07d66cccd5b47ba681007483 /extra/libetonyek | |
parent | c9e4976968b0f847cc693453df1e947531af2e76 (diff) |
Thu Jan 23 03:35:13 UTC 2014
Diffstat (limited to 'extra/libetonyek')
-rw-r--r-- | extra/libetonyek/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/libetonyek/PKGBUILD b/extra/libetonyek/PKGBUILD new file mode 100644 index 000000000..354d5ebda --- /dev/null +++ b/extra/libetonyek/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 204536 2014-01-22 11:40:28Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> +# Contributor: Yue + +pkgname=libetonyek +pkgver=0.0.3 +pkgrel=1 +pkgdesc='Library and a set of tools for reading and converting Apple Keynote presentations' +arch=('i686' 'x86_64') +url='http://www.freedesktop.org/wiki/Software/libetonyek/' +license=('MPL') +depends=('libxml2' 'gperf' 'zlib' 'libwpd' 'boost-libs') +makedepends=('boost' 'cppunit') +source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.xz) +md5sums=('6deb26eb088acd8938b9bec800cfb59e') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +check() { + cd $pkgname-$pkgver + make check +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} |