mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 18:02:56 +01:00
25 lines
576 B
Bash
25 lines
576 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/rebootuser/LinEnum"
|
|
COMMIT="ddfd743d817e3c189da567191d8488ecbfd65f1f"
|
|
MY_P="LinEnum-${COMMIT}"
|
|
SRC_URI="https://github.com/rebootuser/LinEnum/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/LinEnum
|
|
doins LinEnum.sh
|
|
}
|