gentoo-ebuilds/sys-apps/arch-chroot/arch-chroot-28.ebuild
Arthur Zamarin 0ad96e879b
*/*: destable sparc
Result of running the command:
 grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc

Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-09-02 20:00:14 +03:00

31 lines
880 B
Bash

# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit bash-completion-r1
DESCRIPTION="Wraps the chroot command while ensuring that important filesystems are mounted"
HOMEPAGE="https://github.com/archlinux/arch-install-scripts"
SRC_URI="https://github.com/archlinux/arch-install-scripts/archive/refs/tags/v${PV}.tar.gz -> arch-install-scripts-v${PV}.tar.gz"
S="${WORKDIR}/arch-install-scripts-${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
BDEPEND="app-text/asciidoc"
src_compile() {
emake MANS="doc/arch-chroot.8" BINPROGS="arch-chroot"
}
src_test() {
emake MANS="doc/arch-chroot.8" BINPROGS="arch-chroot" check
}
src_install() {
dobin arch-chroot
doman doc/arch-chroot.8
newbashcomp "completion/arch-chroot.bash" "arch-chroot"
}