aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lib3mf/APKBUILD
blob: 9cf73a1bb657365f10349a2eb8c51cf591543d74 (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
27
28
29
30
31
32
33
34
35
36
37
38
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
pkgname=lib3mf
pkgver=1.8.1
_googletestver=1.8.1
pkgrel=0
pkgdesc="A C++ implementation of the 3D Manufacturing Format file standard"
url="https://github.com/3MFConsortium/lib3mf"
arch="all"
license="BSD-2-Clause"
subpackages="$pkgname-dev"
makedepends="zlib-dev libzip-dev cmake util-linux-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/3MFConsortium/lib3mf/archive/v$pkgver.tar.gz"
options="!check" # Unit tests requires source code of googletest, which is git submodule but not included in the release

prepare() {
	default_prepare
	mkdir -p build
}

build() {
	cd build
	cmake \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DCMAKE_INSTALL_INCLUDEDIR=include/lib3mf \
		-DCMAKE_INSTALL_LIBDIR=lib \
		-DUSE_INCLUDED_ZLIB=OFF \
		-DUSE_INCLUDED_LIBZIP=OFF \
		-DLIB3MF_TESTS=FALSE \
		..
	make
}

package() {
	cd build
	make DESTDIR="$pkgdir" install
}

sha512sums="f7fd75bcb6472de1595a018e5add516d0d78ab0aee92462b686b77f8d2bef05270e7b737cb7e1d31fc5850815056e753874c2f9ec456a455e8461c4010fe914a  lib3mf-1.8.1.tar.gz"