blob: 9aa142b12e9b97a3ff24491da099d137ffb2e746 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
DESCRIPTION="linux port of Thierry Zollers' BTCrack"
HOMEPAGE="https://github.com/mikeryan/btcrack"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/mikeryan/btcrack.git"
inherit git-r3
else
#SRC_URI=""
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${ED}" PREFIX=/usr install
}
|