diff options
Diffstat (limited to 'repo/catch2/catch2.xibuild')
-rw-r--r-- | repo/catch2/catch2.xibuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/repo/catch2/catch2.xibuild b/repo/catch2/catch2.xibuild new file mode 100644 index 0000000..f493465 --- /dev/null +++ b/repo/catch2/catch2.xibuild @@ -0,0 +1,30 @@ +#!/bin/sh + +NAME="catch2" +DESC="A modern, C++-native, header-only, test framework for unit-tests" + +MAKEDEPS="cmake python" + +PKG_VER=2.13.8 +SOURCE="https://github.com/catchorg/Catch2/archive/v$PKG_VER/catch2-v$PKG_VER.tar.gz" + +build() { + cmake -B build \ + -DCMAKE_BUILD_TYPE=MinSizeRel \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_SHARED_LIBS=TRUE + cmake --build build +} + +check() { + cd build + # ApprovalTests is broken https://github.com/catchorg/Catch2/issues/1780 + CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "ApprovalTests" +} + +package() { + cd $BUILD_ROOT + DESTDIR="$PKG_DEST" cmake --install build +} + |