1408d6cf76
After discussion with Matt on IRC, this is not ready for prime time until 2019 and shouldn't have been ACKed and merged. - Revert "Add systemd service for bitcoind" This reverts commit2a87b1b07c
. - Revert "Sync contrib/debian from Matt Corallo's PPA" This reverts commit9085532d35
. Tree-SHA512: 439f4ccc3e196011af448b220adf26b0e653ac589bf4cfbbc276c1500c9d08f209c9d6101e4d232857779d9f25164cfb222ed30e3d63de116f9121e6ebde31c3
23 lines
708 B
Makefile
Executable file
23 lines
708 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
|
|
|
|
QT=$(shell dpkg-vendor --derives-from Ubuntu && echo qt4 || echo qt5)
|
|
|
|
# Yea, autogen should be run on the source archive, but I like doing git archive
|
|
override_dh_auto_configure:
|
|
./autogen.sh
|
|
./configure --with-gui=$(QT)
|
|
|
|
override_dh_auto_test:
|
|
make check
|