From 50ceebb8e57473e2d259a903a55eaffe39323e21 Mon Sep 17 00:00:00 2001 From: fabolous005 Date: Fri, 27 Dec 2024 23:29:59 +0100 Subject: [PATCH] add glaze ebuild --- dev-libs/glaze/glaze-9999.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 dev-libs/glaze/glaze-9999.ebuild diff --git a/dev-libs/glaze/glaze-9999.ebuild b/dev-libs/glaze/glaze-9999.ebuild new file mode 100644 index 0000000..6105249 --- /dev/null +++ b/dev-libs/glaze/glaze-9999.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib + +DESCRIPTION="Extremely fast, in memory, JSON and interface library for modern C++" +HOMEPAGE="https://github.com/stephenberry/glaze" + +EGIT_REPO_URI="https://github.com/stephenberry/glaze.git" +inherit git-r3 + + +LICENSE="MIT" +SLOT="0" +IUSE="" + +BDEPEND="" + + +multilib_src_configure() { + local mycmakeargs=( + -DCMAKE_BUILD_TYPE=Release + -DCMAKE_INSTALL_PREFIX="/usr" + -DBUILD_TESTING=OFF + -G "Ninja" + ) + + cmake_src_configure +}