blob: caf12ac468c4e4b29f34c4da4f3a5544a21a594c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $Id: PKGBUILD 211321 2014-04-18 17:28:24Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Contributor: Simone Sclavi 'Ito' <darkhado@gmail.com>
pkgname=libmspub
pkgver=0.0.6
pkgrel=2
pkgdesc="Microsoft Publisher file format parser library (latest snapshost)"
arch=('i686' 'x86_64')
url="http://www.freedesktop.org/wiki/Software/libmspub/"
license=('GPL2' 'LGPL2.1' 'MPL')
depends=('libwpd' 'icu')
makedepends=('libwpg' 'boost' 'doxygen')
source=(http://dev-www.libreoffice.org/src/${pkgname}-${pkgver}.tar.xz)
md5sums=('96a1f176abd683c6b1b02a08847c0616')
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr --with-docs
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=$pkgdir install
}
|