mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
26 lines
671 B
Bash
26 lines
671 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="Local Linux enumeration and privilege escalation checker."
|
|
HOMEPAGE="https://github.com/InteliSecureLabs/Linux_Exploit_Suggester"
|
|
COMMIT="9db2f5a2af9cbaf4170ccb3b2674b92487fbca03"
|
|
MY_P="Linux_Exploit_Suggester-${COMMIT}"
|
|
SRC_URI="https://github.com/InteliSecureLabs/Linux_Exploit_Suggester/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/Linux_Exploit_Suggester
|
|
doins Linux_Exploit_Suggester.pl
|
|
}
|
|
|