You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.5 KiB
69 lines
2.5 KiB
--- |
|
name: "bitcoin" |
|
suites: |
|
- "lucid" |
|
architectures: |
|
- "i386" |
|
packages: |
|
- "mingw32" |
|
- "git-core" |
|
- "unzip" |
|
- "nsis" |
|
- "faketime" |
|
reference_datetime: "2011-01-30 00:00:00" |
|
remotes: |
|
- "url": "https://github.com/bitcoin/bitcoin.git" |
|
"dir": "bitcoin" |
|
files: |
|
- "qt-win32-4.7.4-gitian.zip" |
|
- "boost-win32-1.47.0-gitian.zip" |
|
- "bitcoin-deps-0.0.3.zip" |
|
script: | |
|
# |
|
mkdir $HOME/qt |
|
cd $HOME/qt |
|
unzip ../build/qt-win32-4.7.4-gitian.zip |
|
cd $HOME/build/ |
|
export PATH=$PATH:$HOME/qt/bin/ |
|
# |
|
mkdir boost_1_47_0 |
|
cd boost_1_47_0 |
|
mkdir -p stage/lib |
|
unzip ../boost-win32-1.47.0-gitian.zip |
|
cd bin/$GBUILD_BITS |
|
for lib in *; do |
|
i586-mingw32msvc-ar rc ../../stage/lib/libboost_${lib}-mt-s.a $lib/*.o |
|
i586-mingw32msvc-ranlib ../../stage/lib/libboost_${lib}-mt-s.a |
|
done |
|
cd ../.. |
|
mv include/boost . |
|
cd .. |
|
# |
|
unzip bitcoin-deps-0.0.3.zip |
|
# |
|
find -type f | xargs touch --date="$REFERENCE_DATETIME" |
|
# |
|
cd bitcoin |
|
mkdir -p $OUTDIR/src |
|
cp -a . $OUTDIR/src |
|
rm -rf $OUTDIR/src/.git |
|
cp $OUTDIR/src/doc/README_windows.txt $OUTDIR/readme.txt |
|
cp $OUTDIR/src/COPYING $OUTDIR/license.txt |
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 |
|
export FAKETIME=$REFERENCE_DATETIME |
|
export TZ=UTC |
|
$HOME/qt/src/bin/qmake -spec unsupported/win32-g++-cross USE_SSL=1 MINIUPNPC_LIB_PATH=$HOME/build/miniupnpc MINIUPNPC_INCLUDE_PATH=$HOME/build/ BDB_LIB_PATH=$HOME/build/db-4.8.30.NC/build_unix BDB_INCLUDE_PATH=$HOME/build/db-4.8.30.NC/build_unix BOOST_LIB_PATH=$HOME/build/boost_1_47_0/stage/lib BOOST_INCLUDE_PATH=$HOME/build/boost_1_47_0 BOOST_LIB_SUFFIX=-mt-s BOOST_THREAD_LIB_SUFFIX=_win32-mt-s OPENSSL_LIB_PATH=$HOME/build/openssl-1.0.0e OPENSSL_INCLUDE_PATH=$HOME/build/openssl-1.0.0e/include QRENCODE_LIB_PATH=$HOME/build/qrencode-3.2.0/.libs QRENCODE_INCLUDE_PATH=$HOME/build/qrencode-3.2.0 USE_QRCODE=1 INCLUDEPATH=$HOME/build DEFINES=BOOST_THREAD_USE_LIB BITCOIN_NEED_QT_PLUGINS=1 QMAKE_LRELEASE=lrelease QMAKE_CXXFLAGS=-frandom-seed=bitcoin QMAKE_LFLAGS=-frandom-seed=bitcoin |
|
make $MAKEOPTS |
|
cp release/bitcoin-qt.exe $OUTDIR/ |
|
# |
|
cd src |
|
sed 's/$(DEBUGFLAGS)/-frandom-seed=bitcoin/' -i makefile.linux-mingw |
|
export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 |
|
export FAKETIME=$REFERENCE_DATETIME |
|
export TZ=UTC |
|
make -f makefile.linux-mingw $MAKEOPTS DEPSDIR=$HOME/build bitcoind.exe USE_SSL=1 USE_UPNP=0 |
|
i586-mingw32msvc-strip bitcoind.exe |
|
makensis ../share/setup.nsi |
|
cp ../share/bitcoin-*-win32-setup.exe $OUTDIR/ |
|
mkdir $OUTDIR/daemon |
|
cp bitcoind.exe $OUTDIR/daemon
|
|
|