mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
28 lines
613 B
Bash
28 lines
613 B
Bash
pkgname=librevenge
|
|
pkgver=0.0.4
|
|
pkgrel=4
|
|
pkgdesc="library for REVerses ENGineered formats filters"
|
|
arch=('x86_64')
|
|
url="http://sf.net/p/libwpd/librevenge/"
|
|
license=('MPL')
|
|
depends=('boost-libs')
|
|
makedepends=('boost' 'doxygen' 'cppunit')
|
|
source=(http://sourceforge.net/projects/libwpd/files/librevenge/$pkgname-$pkgver/$pkgname-$pkgver.tar.xz)
|
|
sha1sums=('533dd83a668d3efc0095ad82718e34662395635d')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-static --disable-werror
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir/" install
|
|
}
|