mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 02:04:36 +08:00
23 lines
556 B
Bash
23 lines
556 B
Bash
# Maintainer: Fabian Kosmale <0inkane@googlemail.com>
|
|
pkgname=libodfgen
|
|
pkgver=0.0.4
|
|
pkgrel=1
|
|
pkgdesc='Library for generating documents in Open Document Format'
|
|
arch=('x86_64')
|
|
url='http://sf.net/p/libwpd/libodfgen/'
|
|
license=('MPL')
|
|
depends=('libwpd' 'zlib')
|
|
makedepends=('boost' 'libwpg' 'libetonyek')
|
|
source=(http://dev-www.libreoffice.org/src/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('e5483d1f0b71e64c367c1194b54b0f53')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
} |