mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-10 14:58:05 +00:00
Make bitcoin-qt static-link libqrcode and add it for debian pkgs.
This commit is contained in:
parent
32af6b16f1
commit
b03cb15789
@ -19,14 +19,6 @@ OBJECTS_DIR = build
|
|||||||
MOC_DIR = build
|
MOC_DIR = build
|
||||||
UI_DIR = build
|
UI_DIR = build
|
||||||
|
|
||||||
# use: qmake "USE_QRCODE=1"
|
|
||||||
# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support
|
|
||||||
contains(USE_QRCODE, 1) {
|
|
||||||
message(Building with QRCode support)
|
|
||||||
DEFINES += USE_QRCODE
|
|
||||||
LIBS += -lqrencode
|
|
||||||
}
|
|
||||||
|
|
||||||
# use: qmake "RELEASE=1"
|
# use: qmake "RELEASE=1"
|
||||||
contains(RELEASE, 1) {
|
contains(RELEASE, 1) {
|
||||||
# Mac: compile for maximum compatibility (10.5, 32-bit)
|
# Mac: compile for maximum compatibility (10.5, 32-bit)
|
||||||
@ -38,6 +30,14 @@ contains(RELEASE, 1) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# use: qmake "USE_QRCODE=1"
|
||||||
|
# libqrencode (http://fukuchi.org/works/qrencode/index.en.html) must be installed for support
|
||||||
|
contains(USE_QRCODE, 1) {
|
||||||
|
message(Building with QRCode support)
|
||||||
|
DEFINES += USE_QRCODE
|
||||||
|
LIBS += -lqrencode
|
||||||
|
}
|
||||||
|
|
||||||
# use: qmake "USE_UPNP=1" ( enabled by default; default)
|
# use: qmake "USE_UPNP=1" ( enabled by default; default)
|
||||||
# or: qmake "USE_UPNP=0" (disabled by default)
|
# or: qmake "USE_UPNP=0" (disabled by default)
|
||||||
# or: qmake "USE_UPNP=-" (not supported)
|
# or: qmake "USE_UPNP=-" (not supported)
|
||||||
|
@ -15,7 +15,8 @@ Build-Depends: debhelper,
|
|||||||
libboost-thread-dev (>> 1.35) | libboost-thread1.35-dev,
|
libboost-thread-dev (>> 1.35) | libboost-thread1.35-dev,
|
||||||
libboost-test-dev (>> 1.35) | libboost-test1.35-dev,
|
libboost-test-dev (>> 1.35) | libboost-test1.35-dev,
|
||||||
qt4-qmake,
|
qt4-qmake,
|
||||||
libqt4-dev
|
libqt4-dev,
|
||||||
|
libqrencode-dev
|
||||||
Standards-Version: 3.9.2
|
Standards-Version: 3.9.2
|
||||||
Homepage: http://www.bitcoin.org/
|
Homepage: http://www.bitcoin.org/
|
||||||
Vcs-Git: git://github.com/bitcoin/bitcoin.git
|
Vcs-Git: git://github.com/bitcoin/bitcoin.git
|
||||||
|
@ -20,7 +20,7 @@ override_dh_auto_clean:
|
|||||||
cd src; $(MAKE) -f makefile.unix clean
|
cd src; $(MAKE) -f makefile.unix clean
|
||||||
|
|
||||||
override_dh_auto_configure:
|
override_dh_auto_configure:
|
||||||
qmake bitcoin-qt.pro
|
qmake bitcoin-qt.pro USE_SSL=1 USE_QRCODE=1
|
||||||
|
|
||||||
override_dh_auto_test:
|
override_dh_auto_test:
|
||||||
cd src; $(MAKE) -f makefile.unix test_bitcoin
|
cd src; $(MAKE) -f makefile.unix test_bitcoin
|
||||||
|
@ -59,5 +59,3 @@ script: |
|
|||||||
cd ..
|
cd ..
|
||||||
#
|
#
|
||||||
tar cjvpf "$OUTDIR/bitcoin-deps-0.0.1.tbz2" "$HOME/build"
|
tar cjvpf "$OUTDIR/bitcoin-deps-0.0.1.tbz2" "$HOME/build"
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,13 +16,15 @@ packages:
|
|||||||
- "libssl-dev"
|
- "libssl-dev"
|
||||||
- "git-core"
|
- "git-core"
|
||||||
- "unzip"
|
- "unzip"
|
||||||
- "libqrencode-dev"
|
- "pkg-config"
|
||||||
|
- "libpng12-dev"
|
||||||
reference_datetime: "2011-01-30 00:00:00"
|
reference_datetime: "2011-01-30 00:00:00"
|
||||||
remotes:
|
remotes:
|
||||||
- "url": "https://github.com/bitcoin/bitcoin.git"
|
- "url": "https://github.com/bitcoin/bitcoin.git"
|
||||||
"dir": "bitcoin"
|
"dir": "bitcoin"
|
||||||
files:
|
files:
|
||||||
- "miniupnpc-1.6.tar.gz"
|
- "miniupnpc-1.6.tar.gz"
|
||||||
|
- "qrencode-3.2.0.tar.bz2"
|
||||||
script: |
|
script: |
|
||||||
INSTDIR="$HOME/install"
|
INSTDIR="$HOME/install"
|
||||||
export LIBRARY_PATH="$INSTDIR/lib"
|
export LIBRARY_PATH="$INSTDIR/lib"
|
||||||
@ -32,6 +34,12 @@ script: |
|
|||||||
INSTALLPREFIX=$INSTDIR make $MAKEOPTS install
|
INSTALLPREFIX=$INSTDIR make $MAKEOPTS install
|
||||||
cd ..
|
cd ..
|
||||||
#
|
#
|
||||||
|
tar xjf qrencode-3.2.0.tar.bz2
|
||||||
|
cd qrencode-3.2.0
|
||||||
|
./configure --prefix=$INSTDIR --enable-static --disable-shared
|
||||||
|
make $MAKEOPTS install
|
||||||
|
cd ..
|
||||||
|
#
|
||||||
cd bitcoin
|
cd bitcoin
|
||||||
mkdir -p $OUTDIR/src
|
mkdir -p $OUTDIR/src
|
||||||
cp -a . $OUTDIR/src
|
cp -a . $OUTDIR/src
|
||||||
|
Loading…
Reference in New Issue
Block a user