View Raw Ebuild
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3
DESCRIPTION="A lightweight C++ logging library"
HOMEPAGE="https://github.com/emilk/loguru"
EGIT_REPO_URI="https://github.com/emilk/loguru.git"
EGIT_COMMIT="4adaa185883e3c04da25913579c451d3c32cfac1"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="~amd64"
src_prepare()
{
cmake_src_prepare
}
src_compile()
{
cmake_src_compile
}
src_install()
{
insinto /usr/include
doins loguru.hpp
cmake_src_install
}