997021986e
This: * Partially reverts9f68ed6
(which fixed spelling in a changelog, though generally changelogs should be append-only). * Disables UPnP support (PPA has not had it for a while, and I still don't trust miniupnpc, plus it seems uneccessary - its been a while since we needed to care about Bitcoin-Qt home users getting their inbound ports auto-mapped). * Enables ZMQ. * Forces GUI to Qt4 to fix various issues people have been seeing on Ubuntu and elsewhere with Qt5. * Reverts70899d70b
(Bitcoin does not enable "instant payments", not is transaction management "carried out collectively by the network", for whatever "transaction management" means, finally Bitcoin Core is not the only way to use the Bitcoin currency, as seemingly implied in the description).
21 lines
655 B
Makefile
Executable file
21 lines
655 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- mode: makefile; coding: utf-8 -*-
|
|
|
|
#DEB_MAKE_CHECK_TARGET = test_bitcoin
|
|
#build/bitcoind::
|
|
# $(if $(filter nocheck,$(DEB_BUILD_OPTIONS)),,src/test_bitcoin)
|
|
|
|
%:
|
|
dh --with bash-completion $@
|
|
|
|
override_dh_auto_clean:
|
|
if [ -f Makefile ]; then $(MAKE) distclean; fi
|
|
rm -rf Makefile.in aclocal.m4 configure src/Makefile.in src/bitcoin-config.h.in src/build-aux src/qt/Makefile.in src/qt/test/Makefile.in src/test/Makefile.in
|
|
|
|
# Yea, autogen should be run on the source archive, but I like doing git archive
|
|
override_dh_auto_configure:
|
|
./autogen.sh
|
|
./configure --without-miniupnpc --with-gui=qt4
|
|
|
|
override_dh_auto_test:
|
|
make check
|