Merge pull request #343 from gkroon/linenum

adding LinEnum ebuild for #235
This commit is contained in:
Anton Bolshakov 2018-08-29 08:14:34 +06:00 committed by GitHub
commit 06d5903018
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST linenum-20180827.tar.gz 13555 BLAKE2B 7f3d7b6e125d576e6fa70639346b5745980584d99ef58368a30bd2191eb6fcb72cbb40e0db7e79d0230a849948f8c5615b17dfbd2770f823e4c8d994aa0ec74d SHA512 3c55e36860a4bd00cde33954ef7f38b6532b050a125d64f97c886e34d3d6797b1042212535a82442315755b1022df7e1ab969e689b2648938c75676b88d53606

View file

@ -0,0 +1,25 @@
# 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="d42e5eb07c4559ec2162f09ec71d687bf218a8a8"
MY_P="LinEnum-${COMMIT}"
SRC_URI="https://github.com/rebootuser/LinEnum/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_install() {
newbin LinEnum.sh linenum
}