mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
25 lines
517 B
Bash
25 lines
517 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="Local Linux enumeration and privilege escalation checker"
|
|
HOMEPAGE="https://github.com/rebootuser/LinEnum"
|
|
|
|
EGIT_REPO_URI="https://github.com/rebootuser/LinEnum"
|
|
if [[ ${PV} != *9999 ]]; then
|
|
EGIT_COMMIT="54402e94500e7d1f2c9702c3d73cfa40d8578a5b"
|
|
KEYWORDS="amd64 x86"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
src_install() {
|
|
insinto /usr/share/LinEnum
|
|
doins LinEnum.sh
|
|
|
|
dodoc *.md
|
|
}
|