mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 02:30:58 +02:00
oclhashcat: added 0.23 to repo
This commit is contained in:
parent
7d328cb444
commit
d4e1cac56c
3 changed files with 43 additions and 0 deletions
3
app-crypt/oclhashcat-bin/Manifest
Normal file
3
app-crypt/oclhashcat-bin/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
AUX oclhashcat 140 RMD160 bfa991360fcca26005ba07b642cdcf5a1504473b SHA1 2830c4b9271f0e127efbb7a6bf8b39c4a081a83c SHA256 b1c8dc056c8778deaac2aa308f9a7a3d4c9f3d53ecff75a84db20a8e0e868df8
|
||||
DIST oclHashcat-0.23.rar 17626227 RMD160 f976994999084455260d2ac7eb0e817d5d490d11 SHA1 4b7c6236b2db23cc12210c5c0cf136d5d99603f2 SHA256 44ca39632e3a9a4b92f436e9b98bd1930f6956d0039cc03414baf0c29c57f18b
|
||||
EBUILD oclhashcat-bin-0.23.ebuild 804 RMD160 4c7ce7977c05b7ee56718c294de6e2353a4cf763 SHA1 25fdefaf96c156c61178abf9bef5d7a804ef65ad SHA256 87acb8a2858634d74373a4f4a26dd57ffd216256f4e8965cc96a001af0564d79
|
||||
5
app-crypt/oclhashcat-bin/files/oclhashcat
Normal file
5
app-crypt/oclhashcat-bin/files/oclhashcat
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
cd /usr/lib/oclhashcat-bin
|
||||
[ -e ./oclHashcat64.bin ] && ./oclHashcat64.bin $@
|
||||
[ -e ./oclHashcat32.bin ] && ./oclHashcat32.bin $@
|
||||
35
app-crypt/oclhashcat-bin/oclhashcat-bin-0.23.ebuild
Executable file
35
app-crypt/oclhashcat-bin/oclhashcat-bin-0.23.ebuild
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
MY_P="oclHashcat-${PV}"
|
||||
|
||||
inherit eutils
|
||||
DESCRIPTION="An opencl multihash cracker"
|
||||
HOMEPAGE="http://hashcat.net/oclhashcat/"
|
||||
SRC_URI="http://hashcat.net/files/${MY_P}.rar"
|
||||
|
||||
LICENSE="Artistic"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
RESTRICT="fetch mirror"
|
||||
|
||||
DEPEND="virtual/opencl-sdk
|
||||
app-arch/unrar"
|
||||
RDEPEND="x11-drivers/nvidia-drivers"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
src_install() {
|
||||
dodoc example.*
|
||||
rm -f oclHashcat.exe example.* batchcrack.sh docs
|
||||
if use x86; then
|
||||
rm oclHashcat64.bin
|
||||
else
|
||||
rm oclHashcat32.bin
|
||||
fi
|
||||
dodir /usr/lib/${PN}
|
||||
cp -R "${S}"/* "${D}"/usr/lib/${PN} || die "Copy files failed"
|
||||
dobin ${FILESDIR}/oclhashcat || die "dobin failed"
|
||||
chown -R root:0 "${D}"
|
||||
}
|
||||
Loading…
Reference in a new issue