mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 18:02:56 +01:00
25 lines
552 B
Bash
25 lines
552 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A Linux Privilege Escalation Check Script"
|
|
HOMEPAGE="https://github.com/sleventyeleven/linuxprivchecker"
|
|
|
|
EGIT_REPO_URI="https://github.com/sleventyeleven/linuxprivchecker"
|
|
if [[ ${PV} != *9999 ]]; then
|
|
EGIT_COMMIT="e048a31a8852a604b4f953c39e2d9b6d08c5d6bb"
|
|
KEYWORDS="amd64 x86"
|
|
fi
|
|
|
|
LICENSE="Unlicense"
|
|
SLOT="0"
|
|
|
|
src_install() {
|
|
insinto /usr/share/linuxprivchecker
|
|
doins linuxprivchecker.py
|
|
|
|
dodoc *.md
|
|
}
|