From ac9ee8d2d6b72dcd3ebbf94c7028072b2e054cc3 Mon Sep 17 00:00:00 2001 From: Schrijvers Luc Date: Sat, 27 Sep 2025 07:26:33 +0200 Subject: [PATCH] ms_gsl, new package (requirement for mixxx) (#12960) --- dev-cpp/ms-gsl/ms_gsl-4.2.0.recipe | 49 ++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 dev-cpp/ms-gsl/ms_gsl-4.2.0.recipe diff --git a/dev-cpp/ms-gsl/ms_gsl-4.2.0.recipe b/dev-cpp/ms-gsl/ms_gsl-4.2.0.recipe new file mode 100644 index 000000000..d5b4f1e48 --- /dev/null +++ b/dev-cpp/ms-gsl/ms_gsl-4.2.0.recipe @@ -0,0 +1,49 @@ +SUMMARY="Guideline Support Library implementation by Microsoft" +DESCRIPTION="The Guidelines Support Library (GSL) contains functions and types that are suggested \ +for use by the C++ Core Guidelines (https://github.com/isocpp/CppCoreGuidelines) maintained by \ +the Standard C++ Foundation (https://isocpp.org)." +HOMEPAGE="https://github.com/Microsoft/GSL" +COPYRIGHT="2015 Microsoft Corporation." +LICENSE="MIT" +REVISION="1" +SOURCE_URI="https://github.com/microsoft/GSL/archive/refs/tags/v$portVersion.tar.gz" +CHECKSUM_SHA256="2c717545a073649126cb99ebd493fa2ae23120077968795d2c69cbab821e4ac6" +SOURCE_DIR="GSL-$portVersion" + +ARCHITECTURES="any" + +PROVIDES=" + ms_gsl = $portVersion + devel:ms_gsl = $portVersion + " +REQUIRES=" + haiku + " + +BUILD_REQUIRES=" + haiku_devel + " +BUILD_PREREQUIRES=" + cmd:cmake + cmd:gcc + cmd:make + " + +BUILD() +{ + cmake -B build -S . -DCMAKE_BUILD_TYPE=Release \ + $cmakeDirArgs \ + -DGSL_TEST=OFF + + make -C build $jobArgs +} + +INSTALL() +{ + make -C build install +} + +TEST() +{ + make -C build test +}