gentoo-overlay/dev-cpp/plog/plog-1.1.11.ebuild
System user; root 79ab2090d7 obs updates
2026-05-31 13:48:22 -06:00

25 lines
520 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Plog - Portable, simple and extensible C++ logging library"
HOMEPAGE="https://github.com/SergiusTheBest/plog"
SRC_URI="https://github.com/SergiusTheBest/plog/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
# Header-only library, no dependencies needed
RDEPEND=""
DEPEND=""
BDEPEND=""
src_install() {
insinto /usr/include
doins -r include/plog
}