mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
31 lines
704 B
Bash
31 lines
704 B
Bash
pkgname=libzmf
|
|
pkgver=0.0.2
|
|
pkgrel=1
|
|
pkgdesc="a library for import of Zoner drawing and bitmap files"
|
|
arch=('x86_64')
|
|
url="https://wiki.documentfoundation.org/DLP/Libraries/libzmf"
|
|
license=('MPL')
|
|
source=(http://dev-www.libreoffice.org/src/$pkgname/$pkgname-$pkgver.tar.xz)
|
|
depends=('librevenge' 'libpng')
|
|
makedepends=('boost' 'cppunit' 'doxygen')
|
|
sha256sums=('27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-werror
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
install -Dm644 COPYING $pkgdir/usr/share/licenses/${pkgname}/COPYING
|
|
}
|
|
|
|
|