mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 04:20:27 +02:00
wisecracker: inital ebuild, amd64 only
This commit is contained in:
parent
57573327b9
commit
bef0c2e573
2 changed files with 30 additions and 0 deletions
2
app-crypt/wisecracker/Manifest
Normal file
2
app-crypt/wisecracker/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST wisecracker-1.0.tar.gz 72611 SHA256 e8c4db29e24c73043f974092abd442859b9e9b3b5e1e55d11176b5938d3e2179 SHA512 357248c8108a8c041c582bc0e05ddc4b6f1d208346d2158bcbf6e0c83186074e54689ce0b79f7bf35eb9d118da9958056efa5bd3fde8401e6c8b3355373b33a8 WHIRLPOOL de16607fd70d9dfb3db92ff9922edd2e1fe592e313037c62e57dcf9ea6ecb92c53c18b1fc75d7fcd3e9ae346ce2e04adbddaf3eade62ec0a2563bc236f1800e6
|
||||
EBUILD wisecracker-1.0.ebuild 622 SHA256 92447f9abe7bdb054cde88584de2329229cb291a6eb698d719c2279b9591e384 SHA512 f7f5314a8d181c809e2172bf1ba1869dc21f66f9a15f46c84e59686c563268130a0de37dbe5267278ba769da272ac8c054c7fc68239f6e66f81d4f4a0f243b92 WHIRLPOOL eff3fe790a1aa8b4d93835c6891926dafbddcd26f633c9dea62aa3ec63aabda2678e294f7f3f2ac7e92c165e26e70adca8078b99f99e39af9c18803f88d743ac
|
||||
28
app-crypt/wisecracker/wisecracker-1.0.ebuild
Normal file
28
app-crypt/wisecracker/wisecracker-1.0.ebuild
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright 1999-2012 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit cmake-utils
|
||||
|
||||
DESCRIPTION="An open source framework for tools that can distribute brute force cryptanalysis"
|
||||
HOMEPAGE="http://selectiveintellect.com/wisecracker.html"
|
||||
KEYWORDS="~amd64"
|
||||
SRC_URI="https://github.com/vikasnkumar/wisecracker/archive/v1.0.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
IUSE="mpi"
|
||||
|
||||
DEPEND="virtual/opencl
|
||||
mpi? ( virtual/mpi )"
|
||||
RDEPEND="${DEPEND}
|
||||
dev-libs/openssl
|
||||
dev-util/xxd"
|
||||
|
||||
export OPENCL_ROOT="/usr/"
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
}
|
||||
Loading…
Reference in a new issue