A C++ implementation of the 3D Manufacturing Format file standard
https://github.com/3MFConsortium/lib3mf
---
testing/lib3mf/APKBUILD | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
create mode 100644 testing/lib3mf/APKBUILD
diff --git a/testing/lib3mf/APKBUILD b/testing/lib3mf/APKBUILD
new file mode 100644
index 0000000000..e3071db2a4
--- /dev/null
+++ b/testing/lib3mf/APKBUILD
@@ -0,0 +1,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"
+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"
--
2.23.0
Binary-decimal and decimal-binary routines for IEEE doubles
https://github.com/google/double-conversion
---
testing/double-conversion/APKBUILD | 34 ++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
create mode 100644 testing/double-conversion/APKBUILD
diff --git a/testing/double-conversion/APKBUILD b/testing/double-conversion/APKBUILD
new file mode 100644
index 0000000000..41a87ae402
--- /dev/null
+++ b/testing/double-conversion/APKBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
+pkgname=double-conversion
+pkgver=3.1.5
+pkgrel=0
+pkgdesc="Binary-decimal and decimal-binary routines for IEEE doubles"
+url="https://github.com/google/double-conversion"
+arch="all"
+license="BSD-3-Clause"
+subpackages="$pkgname-dev"
+source="$pkgname-$pkgver.tar.gz::https://github.com/google/double-conversion/archive/v$pkgver.tar.gz"
+
+prepare() {
+ default_prepare
+ mkdir -p build
+}
+
+build() {
+ cd build
+
+ cmake -DBUILD_TESTING=ON -DCMAKE_INSTALL_PREFIX=/usr ..
+ make
+}
+
+check() {
+ cd build
+ test/cctest/cctest --list | tr -d '<' | xargs test/cctest/cctest
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
+
+sha512sums="0aeabdbfa06c3c4802905ac4bf8c2180840577677b47d45e1c91034fe07746428c9db79260ce6bdbdf8b584746066cea9247ba43a9c38155caf1ef44e214180a double-conversion-3.1.5.tar.gz"
--
2.23.0