mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-03 12:10:50 +02:00
27 lines
616 B
Bash
27 lines
616 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit eutils
|
|
DESCRIPTION="A Nvidia GPU-based RAR bruteforcer"
|
|
HOMEPAGE="http://www.crark.net/"
|
|
SRC_URI="http://www.crark.net/Cuda-OpenSrc.rar"
|
|
|
|
LICENSE="GPL-3"
|
|
KEYWORDS="x86"
|
|
IUSE=""
|
|
SLOT="0"
|
|
DEPEND="dev-util/nvidia-cuda-sdk"
|
|
DEPEND="app-arch/unrar"
|
|
RDEPEND="x11-drivers/nvidia-drivers"
|
|
S="${WORKDIR}/"
|
|
|
|
src_compile() {
|
|
epatch "${FILESDIR}/cuda-rarcrypt-path.patch"
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin bin/linux/release/cuda-rarcrypt || die "dobin failed"
|
|
dodoc readme
|
|
}
|