53197ba346
In order for the bitcoin version to match what is given by release-monitoring.org, the 'v' prefix should be encoded in BITCOIN_SITE and not BITCOIN_VERSION. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
20 lines
552 B
Makefile
20 lines
552 B
Makefile
################################################################################
|
|
#
|
|
# bitcoin
|
|
#
|
|
################################################################################
|
|
|
|
BITCOIN_VERSION = 0.16.3
|
|
BITCOIN_SITE = $(call github,bitcoin,bitcoin,v$(BITCOIN_VERSION))
|
|
BITCOIN_AUTORECONF = YES
|
|
BITCOIN_LICENSE = MIT
|
|
BITCOIN_LICENSE_FILES = COPYING
|
|
BITCOIN_DEPENDENCIES = boost openssl libevent
|
|
BITCOIN_CONF_OPTS = \
|
|
--disable-wallet \
|
|
--disable-tests \
|
|
--with-boost-libdir=$(STAGING_DIR)/usr/lib/ \
|
|
--disable-hardening
|
|
|
|
$(eval $(autotools-package))
|