gentoo-ebuilds/net-libs/libblkmaker/libblkmaker-0.6.0-r2.ebuild
Michael Mair-Keimberger 88cc636728
net-libs/libblkmaker: delete unused libtool files
Closes: https://bugs.gentoo.org/848918
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38415
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
2024-09-25 15:53:51 +03:00

34 lines
663 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="C implementation of Bitcoin's getblocktemplate interface"
HOMEPAGE="https://github.com/bitcoin/libblkmaker"
SRC_URI="https://github.com/bitcoin/${PN}/archive/v${PV}.tar.gz -> ${P}-github.tgz"
LICENSE="MIT"
SLOT="0/7"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/jansson-2.0.0:=
dev-libs/libbase58
"
DEPEND="${RDEPEND}
test? ( dev-libs/libgcrypt )
"
src_prepare() {
default
eautoreconf
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}