blob: e73f2b0380f876ec7b492f54ae7e249d4fef1388 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="An embeddable profiler"
HOMEPAGE="https://github.com/jonasmr/microprofile"
SRC_URI="https://github.com/jonasmr/microprofile/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Unlicense"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-libs/stb"
BDEPEND="virtual/pkgconfig"
PATCHES=(
"${FILESDIR}/${PN}-4.0-bump-minimum-required-CMake-version.patch"
)
|