28 lines
625 B
Bash
28 lines
625 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-wireless/btcrack/btcrack-9999.ebuild,v 1.1 2014/05/12 22:38:47 zerochaos Exp $
|
|
|
|
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
|
|
KEYWORDS=""
|
|
else
|
|
#SRC_URI=""
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${ED}" PREFIX=/usr install
|
|
}
|