Changelog:
https://bitcoincore.org/en/releases/29.0/
https://bitcoincore.org/en/releases/30.0/
License file hash changed, due to year update in upstream commit:
b537a2c02a
Switch build system to CMake.
https://bitcoincore.org/en/releases/29.0/
- The minimum required CMake version is 3.22.
- In-source builds are not allowed.
- MiniUPnPc and libnatpmp have been removed as dependencies
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
39 lines
974 B
Makefile
39 lines
974 B
Makefile
################################################################################
|
|
#
|
|
# bitcoin
|
|
#
|
|
################################################################################
|
|
|
|
BITCOIN_VERSION = 30.0
|
|
BITCOIN_SITE = https://bitcoincore.org/bin/bitcoin-core-$(BITCOIN_VERSION)
|
|
BITCOIN_LICENSE = MIT
|
|
BITCOIN_LICENSE_FILES = COPYING
|
|
BITCOIN_CPE_ID_VENDOR = bitcoin
|
|
BITCOIN_CPE_ID_PRODUCT = bitcoin_core
|
|
BITCOIN_DEPENDENCIES = host-pkgconf boost libevent
|
|
BITCOIN_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
BITCOIN_MAKE_ENV = BITCOIN_GENBUILD_NO_GIT=1
|
|
BITCOIN_CONF_OPTS = \
|
|
-DBUILD_BENCH=OFF \
|
|
-DBUILD_TESTS=OFF \
|
|
-DBUILD_GUI=OFF \
|
|
-DENABLE_IPC=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_BITCOIN_WALLET),y)
|
|
BITCOIN_DEPENDENCIES += sqlite
|
|
BITCOIN_CONF_OPTS += \
|
|
-DENABLE_WALLET=ON
|
|
else
|
|
BITCOIN_CONF_OPTS += \
|
|
-DENABLE_WALLET=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_ZEROMQ),y)
|
|
BITCOIN_DEPENDENCIES += zeromq
|
|
BITCOIN_CONF_OPTS += -DWITH_ZMQ=ON
|
|
else
|
|
BITCOIN_CONF_OPTS += -DWITH_ZMQ=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|