mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
26 lines
614 B
Bash
26 lines
614 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/pentestmonkey/unix-privesc-check"
|
|
COMMIT="de8223a7b2ff3ed8fa6344cf4a358ec624e42270"
|
|
MY_P="${PN}-${COMMIT}"
|
|
SRC_URI="https://github.com/pentestmonkey/unix-privesc-check/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Unknown"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/unix-privesc-check
|
|
doins upc.sh
|
|
}
|
|
|