25 lines
520 B
Bash
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
|
|
}
|
|
|