Install this version:
emerge -a =app-emulation/qemu-start-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-emulation/qemu-start-9999
Or alternatively:
emerge --autounmask-write -a =app-emulation/qemu-start-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3
DESCRIPTION="Simple interactive POSIX shell script to facilitate launching QEMU VMs"
HOMEPAGE="https://sr.ht/~flexibeast/qemu-start/"
EGIT_REPO_URI="https://git.sr.ht/~flexibeast/qemu-start"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64"
src_unpack() {
git-r3_src_unpack
}
src_install() {
exeinto /usr/bin
doexe qemu-start
doman qemu-start.1
}