libblkmaker-0.4.3.ebuild 520 B

12345678910111213141516171819202122232425
  1. # Copyright 1999-2015 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. EAPI=5
  4. DESCRIPTION="C implementation of getblocktemplate (BIP 22)"
  5. HOMEPAGE="https://github.com/bitcoin/libblkmaker"
  6. LICENSE="MIT"
  7. SRC_URI="https://github.com/bitcoin/libblkmaker/archive/v${PV}.tar.gz -> ${P}-github.tgz"
  8. SLOT="0"
  9. KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
  10. IUSE=""
  11. DEPEND="
  12. >=dev-libs/jansson-2.0.0
  13. "
  14. RDEPEND="${DEPEND}
  15. !<net-misc/bfgminer-3.0.3
  16. "
  17. src_prepare() {
  18. ./autogen.sh || die
  19. }