adding LinEnum ebuild for #235

This commit is contained in:
Guido Kroon 2018-08-28 15:50:30 +02:00
parent 2798bb6fc8
commit 4b52f0c1f4
No known key found for this signature in database
GPG key ID: 394C398C531EFAB0
2 changed files with 27 additions and 0 deletions

View file

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

View file

@ -0,0 +1,26 @@
# 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() {
dobin LinEnum.sh
dosym LinEnum.sh /usr/bin/linenum
}