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