Files
guru/dev-libs/oaknut/oaknut-2.0.3.ebuild
Pavel Sobolev 9fe4b12978 dev-libs/oaknut: add 2.0.3, drop 2.0.2
Signed-off-by: Pavel Sobolev <contact@paveloom.dev>
2026-03-03 22:03:49 +03:00

30 lines
603 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Yet another AArch64 emitter"
# This is a fork of the `merryhime/oaknut` repository
HOMEPAGE="https://github.com/eden-emulator/oaknut"
SRC_URI="https://github.com/eden-emulator/oaknut/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"
IUSE="test"
RESTRICT="!test? ( test )"
BDEPEND="
test? ( dev-cpp/catch )
"
src_configure() {
local mycmakeargs=(
-DBUILD_TESTING=$(usex test)
)
cmake_src_configure
}