Skip to content

Commit

Permalink
Add ebuild for version 1.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
glv2 committed May 24, 2016
1 parent e5c83f1 commit 03f2bfb
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2014-2015 Guillaume LE VAILLANT
# Distributed under the terms of the GNU General Public License v3

EAPI="5"

inherit eutils autotools

DESCRIPTION="A bruteforce cracker for Peercoin (and Bitcoin, Litecoin, etc...) encrypted wallet files."
HOMEPAGE="https://github.com/glv2/${PN}"
SRC_URI="https://github.com/glv2/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"

DEPEND="
dev-libs/openssl
sys-libs/db
"
RDEPEND="${DEPEND}"

src_prepare() {
eautoreconf
}

src_configure() {
econf
}

src_install() {
dobin "${PN}"
dodoc AUTHORS ChangeLog COPYING NEWS README
}

0 comments on commit 03f2bfb

Please sign in to comment.