mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
34 lines
795 B
Bash
34 lines
795 B
Bash
# Copyright 2021-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="ninja-compatible build tool written in C"
|
|
HOMEPAGE="https://github.com/michaelforney/samurai"
|
|
if [[ "${PV}" == *9999 ]] ; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/michaelforney/samurai.git"
|
|
else
|
|
SRC_URI="https://github.com/michaelforney/samurai/releases/download/${PV}/${P}.tar.gz"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
|
|
fi
|
|
|
|
LICENSE="ISC Apache-2.0 MIT"
|
|
SLOT="0"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-null_pointer_fix.patch" # 786951
|
|
"${FILESDIR}/${P}-phony_targets_fix.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
|
|
dodoc README.md
|
|
}
|