Install this version:
emerge -a =sys-power/zzz-20230413
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-power/zzz-20230413
Or alternatively:
emerge --autounmask-write -a =sys-power/zzz-20230413
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 20230413 | 8 | ~amd64 | 0 |
# Copyright 2023 Gabriel Sanches
# Distributed under the terms of the ISC License
EAPI=8
DESCRIPTION="Really simple suspend script (from Void Linux)"
HOMEPAGE="https://github.com/void-linux/void-runit"
SRC_URI="${HOMEPAGE}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="CC0-1.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""
S="${WORKDIR}/void-runit-${PV}"
src_compile() {
:
}
src_install() {
keepdir etc/zzz.d/{resume,suspend}
dobin ${PN}
doman ${PN}.*
}