mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-09 18:02:56 +01:00
26 lines
623 B
Bash
26 lines
623 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/sleventyeleven/linuxprivchecker"
|
|
COMMIT="e048a31a8852a604b4f953c39e2d9b6d08c5d6bb"
|
|
MY_P="${PN}-${COMMIT}"
|
|
SRC_URI="https://github.com/sleventyeleven/linuxprivchecker/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/linuxprivchecker
|
|
doins linuxprivchecker.py
|
|
}
|
|
|