kernelsign-0.1.0.ebuild (577B)
1 # Copyright 2022 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=8 5 6 DESCRIPTION="A simple kernel signing shell script for UEFI Secure Boot." 7 HOMEPAGE="https://xn--ockzbp.xn--q9jzb1c.xn--q9jyb4c/kernelsign" 8 SRC_URI="${HOMEPAGE}/snapshot/${P}.tar.gz" 9 10 LICENSE="GPL-3+" 11 SLOT="0" 12 KEYWORDS="~amd64" 13 14 DEPEND="" 15 RDEPEND="app-crypt/sbsigntools 16 sys-apps/coreutils 17 sys-fs/cryptsetup" 18 19 src_install() { 20 newbin ks.sh ks || die "Install failed." 21 } 22 23 pkg_postinst() { 24 einfo "Installed kernelsign at /usr/bin/ks. Use ks as root to use kernelsign." 25 }