mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-15 21:02:30 +01:00
25 lines
582 B
Bash
25 lines
582 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Generate plainmasterkeys (rainbowtables) and hashes for hashcat/JTR"
|
|
HOMEPAGE="https://github.com/ZerBea/hcxkeys"
|
|
SRC_URI="https://github.com/ZerBea/hcxkeys/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-libs/openssl:=
|
|
virtual/opencl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile(){
|
|
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" build
|
|
}
|
|
|
|
src_install(){
|
|
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
|
|
}
|