mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 02:30:58 +02:00
22 lines
501 B
Bash
22 lines
501 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Ncrack is a high-speed network authentication cracking tool"
|
|
HOMEPAGE="https://nmap.org/ncrack/"
|
|
SRC_URI="https://nmap.org/ncrack/dist/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-libs/openssl"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=( "$FILESDIR/0.7-ldflags.patch" )
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" STRIP=true install
|
|
}
|