mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-30 04:52:27 +01:00
A C++ implementation of the 3D Manufacturing Format file standard https://github.com/3MFConsortium/lib3mf
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
# 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"
|