add glaze ebuild

This commit is contained in:
fabolous005 2024-12-27 23:29:59 +01:00
parent 746c308c8d
commit 50ceebb8e5

View File

@ -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
}