Merge pull request #103 from hlein/master

Update to the 3.0.0 release (plus one cleanup).
This commit is contained in:
Anton Bolshakov 2016-06-30 08:15:34 +08:00 committed by GitHub
commit d830bbd982

View file

@ -0,0 +1,25 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit git-2 autotools
DESCRIPTION="An advanced GPU-based password recovery utility"
HOMEPAGE="https://hashcat.net/oclhashcat/"
EGIT_REPO_URI="https://github.com/hashcat/oclhashcat.git"
EGIT_COMMIT="67a8d97675ce50f6692e17eeb826da604b18cd05"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="dev-util/intel-ocl-sdk"
src_prepare() {
#do not strip
sed -i "/CFLAGS_NATIVE += -s/d" src/Makefile || die
}
src_install() {
emake DESTDIR="${D}" PREFIX=/usr install
}