blob: 977b7d7aa688e6fde77ee1008d8f59f7a5c6f43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shell-completion
DESCRIPTION="Wraps the chroot command while ensuring that important filesystems are mounted"
HOMEPAGE="https://gitlab.archlinux.org/archlinux/arch-install-scripts"
SRC_URI="https://gitlab.archlinux.org/archlinux/arch-install-scripts/-/archive/v${PV}/arch-install-scripts-v${PV}.tar.bz2"
S="${WORKDIR}/arch-install-scripts-v${PV}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~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/bash/arch-chroot arch-chroot
newzshcomp completion/zsh/_arch-chroot _arch-chroot
}
|