summaryrefslogtreecommitdiff
blob: cc8b1da7755ee0aa850e89d200fb71c61cae662c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Standalone password candidate generator using the PRINCE algorithm"
HOMEPAGE="https://github.com/hashcat/princeprocessor"
SRC_URI="https://github.com/hashcat/princeprocessor/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND=""

S="${WORKDIR}/${P}/src"

src_prepare() {
	sed -i "s#-O2 -s#${CFLAGS} ${LDFLAGS}#" Makefile
	default
}

src_install() {
	newbin pp64.bin princeprocessor
	#install rules after hashcat is fixed
	#insinto /usr/share/hashcat
	#doins ../rules/*.rules
}