mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
36 lines
840 B
Plaintext
36 lines
840 B
Plaintext
# Contributor: Timo Teräs <timo.teras@iki.fi>
|
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
|
|
pkgname=liborcus
|
|
pkgver=0.14.1
|
|
pkgrel=1
|
|
pkgdesc="Library for processing spreadsheet documents"
|
|
url="https://gitlab.com/orcus/orcus"
|
|
arch="all"
|
|
license="MPL-2.0"
|
|
makedepends="$depends_dev boost-dev mdds-dev libixion-dev zlib-dev"
|
|
subpackages="$pkgname-dev"
|
|
source="https://kohei.us/files/orcus/src/liborcus-$pkgver.tar.xz
|
|
"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-python
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="a32dc5a652ce99cff37273c38fb9460e13e7bfb562f40c8d0c79b65c33e340daaeeb2c796308ca700b85bfc13cc8215641563b9e9f6d44b7d61adb8e8a3c950f liborcus-0.14.1.tar.xz"
|