2017-07-25 18:55:40 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# MIT License
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 Maxim Biro <nurupo.contributions@gmail.com>
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
|
|
|
|
# Known issues:
|
|
|
|
# - Doesn't build qTox updater, because it wasn't ported to cmake yet and
|
2017-10-14 19:55:44 +08:00
|
|
|
# because it requires static Qt, which means we'd need to build Qt twice, and
|
|
|
|
# building Qt takes really long time.
|
2017-07-25 18:55:40 +08:00
|
|
|
#
|
|
|
|
# - FFmpeg 3.3 doesn't cross-compile correctly, qTox build fails when linking
|
|
|
|
# against the 3.3 FFmpeg. They have removed `--enable-memalign-hack` switch,
|
2017-10-14 19:55:44 +08:00
|
|
|
# which might be what causes this. Further research needed.
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
|
|
# Common directory paths
|
|
|
|
|
|
|
|
readonly WORKSPACE_DIR="/workspace"
|
|
|
|
readonly QTOX_SRC_DIR="/qtox"
|
|
|
|
|
|
|
|
|
|
|
|
# Make sure we run in an expected environment
|
2017-10-14 19:55:44 +08:00
|
|
|
if [ ! -f /etc/os-release ] || ! cat /etc/os-release | grep -qi 'stretch'
|
2017-07-25 18:55:40 +08:00
|
|
|
then
|
2017-10-14 19:55:44 +08:00
|
|
|
echo "Error: This script should be run on Debian Stretch."
|
|
|
|
exit 1
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
2018-05-07 18:11:20 +08:00
|
|
|
if [ ! -d "$WORKSPACE_DIR" ] || [ ! -d "$QTOX_SRC_DIR" ]
|
2017-07-25 18:55:40 +08:00
|
|
|
then
|
2018-05-07 18:11:20 +08:00
|
|
|
echo "Error: At least one of $WORKSPACE_DIR or $QTOX_SRC_DIR directories is missing."
|
2017-10-14 19:55:44 +08:00
|
|
|
exit 1
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d "$QTOX_SRC_DIR/src" ]
|
|
|
|
then
|
2017-10-14 19:55:44 +08:00
|
|
|
echo "Error: $QTOX_SRC_DIR/src directory is missing, make sure $QTOX_SRC_DIR contains qTox source code."
|
|
|
|
exit 1
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
2017-10-24 15:10:03 +08:00
|
|
|
if [[ "$(id -u)" != "0" ]]
|
2017-07-25 18:55:40 +08:00
|
|
|
then
|
2017-10-14 19:55:44 +08:00
|
|
|
echo "Error: This script must be run as root."
|
|
|
|
exit 1
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Check arguments
|
|
|
|
|
|
|
|
readonly ARCH=$1
|
|
|
|
readonly BUILD_TYPE=$2
|
|
|
|
|
|
|
|
if [ -z "$ARCH" ]
|
|
|
|
then
|
|
|
|
echo "Error: No architecture was specified. Please specify either 'i686' or 'x86_64', case sensitive, as the first argument to the script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$ARCH" != "i686" ]] && [[ "$ARCH" != "x86_64" ]]
|
|
|
|
then
|
|
|
|
echo "Error: Incorrect architecture was specified. Please specify either 'i686' or 'x86_64', case sensitive, as the first argument to the script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "$BUILD_TYPE" ]
|
|
|
|
then
|
|
|
|
echo "Error: No build type was specified. Please specify either 'release' or 'debug', case sensitive, as the second argument to the script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$BUILD_TYPE" != "release" ]] && [[ "$BUILD_TYPE" != "debug" ]]
|
|
|
|
then
|
|
|
|
echo "Error: Incorrect build type was specified. Please specify either 'release' or 'debug', case sensitive, as the second argument to the script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# More directory variables
|
|
|
|
|
|
|
|
readonly BUILD_DIR="/build"
|
|
|
|
readonly DEP_DIR="$WORKSPACE_DIR/$ARCH/dep-cache"
|
|
|
|
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
|
|
|
|
# Get packages
|
|
|
|
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
build-essential \
|
2017-08-12 05:31:18 +08:00
|
|
|
bsdtar \
|
2017-07-25 18:55:40 +08:00
|
|
|
ca-certificates \
|
|
|
|
cmake \
|
|
|
|
git \
|
|
|
|
libtool \
|
|
|
|
pkg-config \
|
|
|
|
tclsh \
|
|
|
|
unzip \
|
|
|
|
wget \
|
2018-04-04 09:19:49 +08:00
|
|
|
yasm \
|
|
|
|
zip
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
if [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
g++-mingw-w64-i686 \
|
|
|
|
gcc-mingw-w64-i686
|
|
|
|
elif [[ "$ARCH" == "x86_64" ]]
|
|
|
|
then
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
g++-mingw-w64-x86-64 \
|
|
|
|
gcc-mingw-w64-x86-64
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-10-24 15:10:03 +08:00
|
|
|
# Install wine to run qTox tests in
|
|
|
|
set +u
|
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage3" ]]
|
|
|
|
then
|
|
|
|
dpkg --add-architecture i386
|
|
|
|
apt-get update
|
|
|
|
apt-get install -y wine wine32 wine64
|
|
|
|
fi
|
|
|
|
set -u
|
|
|
|
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
# Create the expected directory structure
|
|
|
|
|
|
|
|
# Just make sure those exist
|
|
|
|
mkdir -p "$WORKSPACE_DIR"
|
|
|
|
mkdir -p "$DEP_DIR"
|
|
|
|
|
|
|
|
# Build dir should be empty
|
|
|
|
rm -rf "$BUILD_DIR"
|
|
|
|
mkdir -p "$BUILD_DIR"
|
|
|
|
cd "$BUILD_DIR"
|
|
|
|
|
|
|
|
|
|
|
|
# Use all cores for building
|
|
|
|
|
|
|
|
MAKEFLAGS=j$(nproc)
|
|
|
|
export MAKEFLAGS
|
|
|
|
|
|
|
|
|
2017-09-22 09:30:55 +08:00
|
|
|
# Helper functions
|
|
|
|
|
2017-10-14 19:55:44 +08:00
|
|
|
# We check sha256 of all tarballs we download
|
2017-09-22 09:30:55 +08:00
|
|
|
check_sha256()
|
|
|
|
{
|
|
|
|
if ! ( echo "$1 $2" | sha256sum -c --status - )
|
|
|
|
then
|
|
|
|
echo "Error: sha256 of $2 doesn't match the known one."
|
|
|
|
echo "Expected: $1 $2"
|
|
|
|
echo -n "Got: "
|
|
|
|
sha256sum "$2"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "sha256 matches the expected one: $1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-10-22 05:17:51 +08:00
|
|
|
# If it's not a tarball but a git repo, let's check a hash of a file containing hashes of all files
|
|
|
|
check_sha256_git()
|
|
|
|
{
|
|
|
|
# There shoudl be .git directory
|
|
|
|
if [ ! -d ".git" ]
|
|
|
|
then
|
|
|
|
echo "Error: this function should be called in the root of a git repository."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
# Create a file listing hashes of all the files except .git/*
|
|
|
|
find . -type f | grep -v "^./.git" | LC_COLLATE=C sort --stable --ignore-case | xargs sha256sum > /tmp/hashes.sha
|
|
|
|
check_sha256 "$1" "/tmp/hashes.sha"
|
|
|
|
}
|
|
|
|
|
2017-10-14 19:55:44 +08:00
|
|
|
# Strip binaries to reduce file size, we don't need this information anyway
|
|
|
|
strip_all()
|
|
|
|
{
|
|
|
|
set +e
|
|
|
|
for PREFIX_DIR in $DEP_DIR/*; do
|
|
|
|
strip --strip-unneeded $PREFIX_DIR/bin/*
|
|
|
|
$ARCH-w64-mingw32-strip --strip-unneeded $PREFIX_DIR/bin/*
|
|
|
|
$ARCH-w64-mingw32-strip --strip-unneeded $PREFIX_DIR/lib/*
|
|
|
|
done
|
|
|
|
set -e
|
|
|
|
}
|
|
|
|
|
2017-09-22 09:30:55 +08:00
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
# OpenSSL
|
|
|
|
|
|
|
|
OPENSSL_PREFIX_DIR="$DEP_DIR/libopenssl"
|
2018-04-03 01:07:24 +08:00
|
|
|
OPENSSL_VERSION=1.0.2o
|
|
|
|
# hash from https://www.openssl.org/source/
|
|
|
|
OPENSSL_HASH="ec3f5c9714ba0fd45cb4e087301eb1336c317e0d20b575a125050470e8089e4d"
|
2018-03-03 04:44:09 +08:00
|
|
|
OPENSSL_FILENAME="openssl-$OPENSSL_VERSION.tar.gz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$OPENSSL_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$OPENSSL_PREFIX_DIR"
|
|
|
|
mkdir -p "$OPENSSL_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://www.openssl.org/source/$OPENSSL_FILENAME"
|
|
|
|
check_sha256 "$OPENSSL_HASH" "$OPENSSL_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$OPENSSL_FILENAME"
|
|
|
|
rm $OPENSSL_FILENAME
|
2017-07-25 18:55:40 +08:00
|
|
|
cd openssl*
|
|
|
|
|
|
|
|
CONFIGURE_OPTIONS="--prefix=$OPENSSL_PREFIX_DIR shared"
|
|
|
|
if [[ "$ARCH" == "x86_64" ]]
|
|
|
|
then
|
|
|
|
CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS mingw64 --cross-compile-prefix=x86_64-w64-mingw32-"
|
|
|
|
elif [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
|
|
|
CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS mingw --cross-compile-prefix=i686-w64-mingw32-"
|
|
|
|
fi
|
|
|
|
|
|
|
|
./Configure $CONFIGURE_OPTIONS
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $OPENSSL_VERSION > $OPENSSL_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
CONFIGURE_OPTIONS=""
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./openssl*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of OpenSSL `cat $OPENSSL_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Qt
|
|
|
|
|
|
|
|
QT_PREFIX_DIR="$DEP_DIR/libqt5"
|
2017-10-14 19:55:44 +08:00
|
|
|
QT_MAJOR=5
|
|
|
|
QT_MINOR=9
|
2018-05-07 16:59:40 +08:00
|
|
|
QT_PATCH=5
|
2017-10-14 19:55:44 +08:00
|
|
|
QT_VERSION=$QT_MAJOR.$QT_MINOR.$QT_PATCH
|
2018-05-07 16:59:40 +08:00
|
|
|
# hash from https://download.qt.io/archive/qt/5.9/5.9.5/single/qt-everywhere-opensource-src-5.9.5.tar.xz.mirrorlist
|
|
|
|
QT_HASH="a75b87f46240a374fde93fb60038d63e3b570457785268c766c639b5dc18ccf6"
|
2018-03-03 04:44:09 +08:00
|
|
|
QT_FILENAME="qt-everywhere-opensource-src-$QT_VERSION.tar.xz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$QT_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$QT_PREFIX_DIR"
|
|
|
|
mkdir -p "$QT_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://download.qt.io/official_releases/qt/$QT_MAJOR.$QT_MINOR/$QT_VERSION/single/$QT_FILENAME"
|
|
|
|
check_sha256 "$QT_HASH" "$QT_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf $QT_FILENAME
|
|
|
|
rm $QT_FILENAME
|
2017-07-25 18:55:40 +08:00
|
|
|
cd qt*
|
|
|
|
|
|
|
|
export PKG_CONFIG_PATH="$OPENSSL_PREFIX_DIR/lib/pkgconfig"
|
|
|
|
export OPENSSL_LIBS="$(pkg-config --libs openssl)"
|
|
|
|
|
2018-04-03 01:13:35 +08:00
|
|
|
# So, apparently Travis CI terminates a build if it generates more than 4mb of stdout output
|
2017-10-14 19:55:44 +08:00
|
|
|
# which happens when building Qt
|
|
|
|
CONFIGURE_EXTRA=""
|
|
|
|
set +u
|
2017-10-24 15:10:03 +08:00
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage1" ]]
|
2017-10-14 19:55:44 +08:00
|
|
|
then
|
|
|
|
CONFIGURE_EXTRA="-silent"
|
|
|
|
fi
|
|
|
|
set -u
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
./configure -prefix $QT_PREFIX_DIR \
|
|
|
|
-release \
|
|
|
|
-shared \
|
|
|
|
-device-option CROSS_COMPILE=$ARCH-w64-mingw32- \
|
|
|
|
-xplatform win32-g++ \
|
|
|
|
-openssl \
|
|
|
|
$(pkg-config --cflags openssl) \
|
|
|
|
-opensource -confirm-license \
|
|
|
|
-pch \
|
|
|
|
-nomake examples \
|
|
|
|
-nomake tools \
|
|
|
|
-nomake tests \
|
2017-10-14 19:55:44 +08:00
|
|
|
-skip 3d \
|
2017-07-25 18:55:40 +08:00
|
|
|
-skip activeqt \
|
2017-10-14 19:55:44 +08:00
|
|
|
-skip androidextras \
|
|
|
|
-skip canvas3d \
|
|
|
|
-skip charts \
|
|
|
|
-skip connectivity \
|
|
|
|
-skip datavis3d \
|
|
|
|
-skip declarative \
|
|
|
|
-skip doc \
|
|
|
|
-skip enginio \
|
|
|
|
-skip gamepad \
|
|
|
|
-skip graphicaleffects \
|
|
|
|
-skip imageformats \
|
|
|
|
-skip location \
|
|
|
|
-skip macextras \
|
2017-07-25 18:55:40 +08:00
|
|
|
-skip multimedia \
|
2017-10-14 19:55:44 +08:00
|
|
|
-skip networkauth \
|
|
|
|
-skip purchasing \
|
|
|
|
-skip quickcontrols \
|
|
|
|
-skip quickcontrols2 \
|
|
|
|
-skip remoteobjects \
|
|
|
|
-skip script \
|
|
|
|
-skip scxml \
|
|
|
|
-skip sensors \
|
|
|
|
-skip serialbus \
|
|
|
|
-skip serialport \
|
|
|
|
-skip speech \
|
|
|
|
-skip translations \
|
|
|
|
-skip virtualkeyboard \
|
|
|
|
-skip wayland \
|
|
|
|
-skip webchannel \
|
|
|
|
-skip webengine \
|
|
|
|
-skip websockets \
|
|
|
|
-skip webview \
|
|
|
|
-skip x11extras \
|
|
|
|
-skip xmlpatterns \
|
2017-07-25 18:55:40 +08:00
|
|
|
-no-dbus \
|
|
|
|
-no-icu \
|
|
|
|
-no-qml-debug \
|
|
|
|
-no-compile-examples \
|
|
|
|
-qt-libjpeg \
|
|
|
|
-qt-libpng \
|
|
|
|
-qt-zlib \
|
2017-10-14 19:55:44 +08:00
|
|
|
-qt-pcre \
|
|
|
|
-opengl desktop $CONFIGURE_EXTRA
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $QT_VERSION > $QT_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
unset PKG_CONFIG_PATH
|
|
|
|
unset OPENSSL_LIBS
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./qt*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Qt `cat $QT_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-10-14 19:55:44 +08:00
|
|
|
# Stop here if running the first stage on Travis CI
|
|
|
|
set +u
|
2017-10-24 15:10:03 +08:00
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage1" ]]
|
2017-10-14 19:55:44 +08:00
|
|
|
then
|
|
|
|
# Strip to reduce cache size
|
|
|
|
strip_all
|
|
|
|
# Chmod since everything is root:root
|
|
|
|
chmod 777 -R "$WORKSPACE_DIR"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
set -u
|
|
|
|
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
# SQLCipher
|
|
|
|
|
|
|
|
SQLCIPHER_PREFIX_DIR="$DEP_DIR/libsqlcipher"
|
2018-04-03 01:20:37 +08:00
|
|
|
SQLCIPHER_VERSION=v3.4.2
|
|
|
|
SQLCIPHER_HASH="69897a5167f34e8a84c7069f1b283aba88cdfa8ec183165c4a5da2c816cfaadb"
|
2018-03-03 04:44:09 +08:00
|
|
|
SQLCIPHER_FILENAME="$SQLCIPHER_VERSION.tar.gz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$SQLCIPHER_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$SQLCIPHER_PREFIX_DIR"
|
|
|
|
mkdir -p "$SQLCIPHER_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://github.com/sqlcipher/sqlcipher/archive/$SQLCIPHER_FILENAME"
|
|
|
|
check_sha256 "$SQLCIPHER_HASH" "$SQLCIPHER_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$SQLCIPHER_FILENAME"
|
|
|
|
rm $SQLCIPHER_FILENAME
|
2017-10-22 05:17:51 +08:00
|
|
|
cd sqlcipher*
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 $LIBS"'/g configure
|
|
|
|
sed -i s/'LIBS="-lcrypto $LIBS"'/'LIBS="-lcrypto -lgdi32 $LIBS"'/g configure
|
|
|
|
sed -i s/'if test "$TARGET_EXEEXT" = ".exe"'/'if test ".exe" = ".exe"'/g configure
|
|
|
|
|
2017-09-22 09:12:32 +08:00
|
|
|
# Do not remove trailing whitespace and dont replace tabs with spaces in the patch below,
|
|
|
|
# otherwise the patch will fail to apply
|
2017-07-25 18:55:40 +08:00
|
|
|
> Makefile.in-patch cat << "EOF"
|
|
|
|
--- Makefile.in 2017-07-24 04:33:46.944080013 +0000
|
|
|
|
+++ Makefile.in-patch 2017-07-24 04:50:47.340596990 +0000
|
|
|
|
@@ -1074,7 +1074,7 @@
|
|
|
|
$(TOP)/ext/fts5/fts5_varint.c \
|
|
|
|
$(TOP)/ext/fts5/fts5_vocab.c \
|
2018-03-03 04:44:09 +08:00
|
|
|
|
|
|
|
-fts5parse.c: $(TOP)/ext/fts5/fts5parse.y lemon
|
2017-07-25 18:55:40 +08:00
|
|
|
+fts5parse.c: $(TOP)/ext/fts5/fts5parse.y lemon$(BEXE)
|
|
|
|
cp $(TOP)/ext/fts5/fts5parse.y .
|
|
|
|
rm -f fts5parse.h
|
|
|
|
./lemon$(BEXE) $(OPTS) fts5parse.y
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
patch -l < Makefile.in-patch
|
|
|
|
|
|
|
|
./configure --host="$ARCH-w64-mingw32" \
|
|
|
|
--prefix="$SQLCIPHER_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-tempstore=yes \
|
|
|
|
CFLAGS="-O2 -g0 -DSQLITE_HAS_CODEC -I$OPENSSL_PREFIX_DIR/include/" \
|
|
|
|
LDFLAGS="$OPENSSL_PREFIX_DIR/lib/libcrypto.a -lcrypto -lgdi32 -L$OPENSSL_PREFIX_DIR/lib/"
|
|
|
|
|
|
|
|
sed -i s/"TEXE = $"/"TEXE = .exe"/ Makefile
|
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $SQLCIPHER_VERSION > $SQLCIPHER_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
2017-10-22 05:17:51 +08:00
|
|
|
rm -rf ./sqlcipher*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of SQLCipher `cat $SQLCIPHER_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# FFmpeg
|
|
|
|
|
|
|
|
FFMPEG_PREFIX_DIR="$DEP_DIR/libffmpeg"
|
2018-04-03 01:21:54 +08:00
|
|
|
FFMPEG_VERSION=3.2.10
|
|
|
|
FFMPEG_HASH="3c1626220c7b68ff6be7312559f77f3c65ff6809daf645d4470ac0189926bdbc"
|
2018-03-03 04:44:09 +08:00
|
|
|
FFMPEG_FILENAME="ffmpeg-$FFMPEG_VERSION.tar.xz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$FFMPEG_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$FFMPEG_PREFIX_DIR"
|
|
|
|
mkdir -p "$FFMPEG_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://www.ffmpeg.org/releases/$FFMPEG_FILENAME"
|
|
|
|
check_sha256 "$FFMPEG_HASH" "$FFMPEG_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf $FFMPEG_FILENAME
|
|
|
|
rm $FFMPEG_FILENAME
|
2017-07-25 18:55:40 +08:00
|
|
|
cd ffmpeg*
|
|
|
|
|
|
|
|
if [[ "$ARCH" == "x86_64"* ]]
|
|
|
|
then
|
|
|
|
CONFIGURE_OPTIONS="--arch=x86_64"
|
|
|
|
elif [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
|
|
|
CONFIGURE_OPTIONS="--arch=x86"
|
|
|
|
fi
|
|
|
|
|
|
|
|
./configure $CONFIGURE_OPTIONS \
|
|
|
|
--prefix="$FFMPEG_PREFIX_DIR" \
|
|
|
|
--target-os="mingw32" \
|
|
|
|
--cross-prefix="$ARCH-w64-mingw32-" \
|
|
|
|
--pkg-config="pkg-config" \
|
|
|
|
--extra-cflags="-static -O2 -g0" \
|
|
|
|
--extra-ldflags="-lm -static" \
|
|
|
|
--pkg-config-flags="--static" \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-programs \
|
|
|
|
--disable-protocols \
|
|
|
|
--disable-doc \
|
|
|
|
--disable-sdl \
|
|
|
|
--disable-avfilter \
|
|
|
|
--disable-avresample \
|
|
|
|
--disable-filters \
|
|
|
|
--disable-iconv \
|
|
|
|
--disable-network \
|
|
|
|
--disable-muxers \
|
|
|
|
--disable-postproc \
|
|
|
|
--disable-swresample \
|
|
|
|
--disable-swscale-alpha \
|
|
|
|
--disable-dct \
|
|
|
|
--disable-dwt \
|
|
|
|
--disable-lsp \
|
|
|
|
--disable-lzo \
|
|
|
|
--disable-mdct \
|
|
|
|
--disable-rdft \
|
|
|
|
--disable-fft \
|
|
|
|
--disable-faan \
|
|
|
|
--disable-vaapi \
|
|
|
|
--disable-vdpau \
|
|
|
|
--disable-zlib \
|
|
|
|
--disable-xlib \
|
|
|
|
--disable-bzlib \
|
|
|
|
--disable-lzma \
|
|
|
|
--disable-encoders \
|
|
|
|
--disable-decoders \
|
|
|
|
--disable-demuxers \
|
|
|
|
--disable-parsers \
|
|
|
|
--enable-demuxer=h264 \
|
|
|
|
--enable-demuxer=mjpeg \
|
|
|
|
--enable-parser=h264 \
|
|
|
|
--enable-parser=mjpeg \
|
|
|
|
--enable-decoder=h264 \
|
|
|
|
--enable-decoder=mjpeg \
|
2018-01-13 21:19:07 +08:00
|
|
|
--enable-decoder=rawvideo \
|
2017-07-25 18:55:40 +08:00
|
|
|
--enable-memalign-hack
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $FFMPEG_VERSION > $FFMPEG_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
CONFIGURE_OPTIONS=""
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./ffmpeg*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of FFmpeg `cat $FFMPEG_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Openal-soft (irungentoo's fork)
|
|
|
|
|
|
|
|
OPENAL_PREFIX_DIR="$DEP_DIR/libopenal"
|
2017-10-14 19:55:44 +08:00
|
|
|
OPENAL_VERSION=b80570bed017de60b67c6452264c634085c3b148
|
2017-10-22 05:17:51 +08:00
|
|
|
OPENAL_HASH="734ef00895a9c1eb1505c11d638030b73593376df75da66ac5db6aa3e2f76807"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$OPENAL_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$OPENAL_PREFIX_DIR"
|
|
|
|
mkdir -p "$OPENAL_PREFIX_DIR"
|
|
|
|
|
|
|
|
git clone https://github.com/irungentoo/openal-soft-tox openal-soft-tox
|
|
|
|
cd openal*
|
2017-10-14 19:55:44 +08:00
|
|
|
git checkout $OPENAL_VERSION
|
2017-10-22 05:17:51 +08:00
|
|
|
check_sha256_git "$OPENAL_HASH"
|
|
|
|
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
echo "
|
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
|
|
|
|
|
|
|
SET(CMAKE_C_COMPILER $ARCH-w64-mingw32-gcc)
|
|
|
|
SET(CMAKE_CXX_COMPILER $ARCH-w64-mingw32-g++)
|
|
|
|
SET(CMAKE_RC_COMPILER $ARCH-w64-mingw32-windres)
|
|
|
|
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH /usr/$ARCH-w64-mingw32)
|
|
|
|
|
|
|
|
# search for programs in the build host directories
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
|
|
# for libraries and headers in the target directories
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
|
|
|
" > toolchain.cmake
|
|
|
|
|
|
|
|
CFLAGS="-fPIC" cmake -DCMAKE_INSTALL_PREFIX="$OPENAL_PREFIX_DIR" \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DALSOFT_UTILS=OFF \
|
|
|
|
-DALSOFT_EXAMPLES=OFF \
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
|
|
|
|
-DDSOUND_INCLUDE_DIR=/usr/$ARCH-w64-mingw32/include \
|
2017-10-22 05:17:51 +08:00
|
|
|
-DDSOUND_LIBRARY=/usr/$ARCH-w64-mingw32/lib/libdsound.a \
|
|
|
|
..
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $OPENAL_VERSION > $OPENAL_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
2017-10-22 05:17:51 +08:00
|
|
|
cd ..
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
cd ..
|
|
|
|
rm -rf ./openal*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of irungentoo's OpenAL-Soft fork `cat $OPENAL_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Filteraudio
|
|
|
|
|
|
|
|
FILTERAUDIO_PREFIX_DIR="$DEP_DIR/libfilteraudio"
|
2017-10-14 19:55:44 +08:00
|
|
|
FILTERAUDIO_VERSION=ada2f4fdc04940cdeee47caffe43add4fa017096
|
2017-10-22 05:17:51 +08:00
|
|
|
FILTERAUDIO_HASH="cf481e87c860aaf28b50d125195d84556f36d0ebb529d7ebdac39f8cc497256a"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$FILTERAUDIO_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$FILTERAUDIO_PREFIX_DIR"
|
|
|
|
mkdir -p "$FILTERAUDIO_PREFIX_DIR"
|
|
|
|
|
|
|
|
git clone https://github.com/irungentoo/filter_audio filter_audio
|
|
|
|
cd filter*
|
2017-10-14 19:55:44 +08:00
|
|
|
git checkout $FILTERAUDIO_VERSION
|
2017-10-22 05:17:51 +08:00
|
|
|
check_sha256_git "$FILTERAUDIO_HASH"
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
$ARCH-w64-mingw32-gcc -O2 -g0 -c \
|
|
|
|
aec/aec_core.c \
|
|
|
|
aec/aec_core_sse2.c \
|
|
|
|
aec/aec_rdft.c \
|
|
|
|
aec/aec_rdft_sse2.c \
|
|
|
|
aec/aec_resampler.c \
|
|
|
|
aec/echo_cancellation.c \
|
|
|
|
agc/analog_agc.c \
|
|
|
|
agc/digital_agc.c \
|
|
|
|
ns/ns_core.c \
|
|
|
|
ns/nsx_core_c.c \
|
|
|
|
ns/nsx_core.c \
|
|
|
|
ns/noise_suppression_x.c \
|
|
|
|
ns/noise_suppression.c \
|
|
|
|
other/get_scaling_square.c \
|
|
|
|
other/resample_by_2.c \
|
|
|
|
other/spl_sqrt.c \
|
|
|
|
other/delay_estimator.c \
|
|
|
|
other/complex_bit_reverse.c \
|
|
|
|
other/dot_product_with_scale.c \
|
|
|
|
other/cross_correlation.c \
|
|
|
|
other/min_max_operations.c \
|
|
|
|
other/resample_48khz.c \
|
|
|
|
other/high_pass_filter.c \
|
|
|
|
other/energy.c \
|
|
|
|
other/randomization_functions.c \
|
|
|
|
other/speex_resampler.c \
|
|
|
|
other/copy_set_operations.c \
|
|
|
|
other/downsample_fast.c \
|
|
|
|
other/complex_fft.c \
|
|
|
|
other/vector_scaling_operations.c \
|
|
|
|
other/resample_by_2_internal.c \
|
|
|
|
other/delay_estimator_wrapper.c \
|
|
|
|
other/real_fft.c \
|
|
|
|
other/spl_sqrt_floor.c \
|
|
|
|
other/resample_fractional.c \
|
|
|
|
other/ring_buffer.c \
|
|
|
|
other/splitting_filter.c \
|
|
|
|
other/fft4g.c \
|
|
|
|
other/division_operations.c \
|
|
|
|
other/spl_init.c \
|
|
|
|
other/float_util.c \
|
|
|
|
zam/filters.c \
|
|
|
|
vad/vad_sp.c \
|
|
|
|
vad/vad_core.c \
|
|
|
|
vad/webrtc_vad.c \
|
|
|
|
vad/vad_gmm.c \
|
|
|
|
vad/vad_filterbank.c \
|
|
|
|
filter_audio.c \
|
|
|
|
-lpthread \
|
|
|
|
-lm
|
|
|
|
|
|
|
|
ar rcs libfilteraudio.a \
|
|
|
|
aec_core.o \
|
|
|
|
aec_core_sse2.o \
|
|
|
|
aec_rdft.o \
|
|
|
|
aec_rdft_sse2.o \
|
|
|
|
aec_resampler.o \
|
|
|
|
echo_cancellation.o \
|
|
|
|
analog_agc.o \
|
|
|
|
digital_agc.o \
|
|
|
|
ns_core.o \
|
|
|
|
nsx_core_c.o \
|
|
|
|
nsx_core.o \
|
|
|
|
noise_suppression_x.o \
|
|
|
|
noise_suppression.o \
|
|
|
|
get_scaling_square.o \
|
|
|
|
resample_by_2.o \
|
|
|
|
spl_sqrt.o \
|
|
|
|
delay_estimator.o \
|
|
|
|
complex_bit_reverse.o \
|
|
|
|
dot_product_with_scale.o \
|
|
|
|
cross_correlation.o \
|
|
|
|
min_max_operations.o \
|
|
|
|
resample_48khz.o \
|
|
|
|
high_pass_filter.o \
|
|
|
|
energy.o \
|
|
|
|
randomization_functions.o \
|
|
|
|
speex_resampler.o \
|
|
|
|
copy_set_operations.o \
|
|
|
|
downsample_fast.o \
|
|
|
|
complex_fft.o \
|
|
|
|
vector_scaling_operations.o \
|
|
|
|
resample_by_2_internal.o \
|
|
|
|
delay_estimator_wrapper.o \
|
|
|
|
real_fft.o \
|
|
|
|
spl_sqrt_floor.o \
|
|
|
|
resample_fractional.o \
|
|
|
|
ring_buffer.o \
|
|
|
|
splitting_filter.o \
|
|
|
|
fft4g.o \
|
|
|
|
division_operations.o \
|
|
|
|
spl_init.o \
|
|
|
|
float_util.o \
|
|
|
|
filters.o \
|
|
|
|
vad_sp.o \
|
|
|
|
vad_core.o \
|
|
|
|
webrtc_vad.o \
|
|
|
|
vad_gmm.o \
|
|
|
|
vad_filterbank.o \
|
|
|
|
filter_audio.o
|
|
|
|
|
|
|
|
mkdir $FILTERAUDIO_PREFIX_DIR/include
|
|
|
|
mkdir $FILTERAUDIO_PREFIX_DIR/lib
|
|
|
|
cp filter_audio.h $FILTERAUDIO_PREFIX_DIR/include
|
|
|
|
cp libfilteraudio.a $FILTERAUDIO_PREFIX_DIR/lib
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $FILTERAUDIO_VERSION > $FILTERAUDIO_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./filter*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Filteraudio `cat $FILTERAUDIO_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# QREncode
|
|
|
|
|
|
|
|
QRENCODE_PREFIX_DIR="$DEP_DIR/libqrencode"
|
2018-04-03 01:25:56 +08:00
|
|
|
QRENCODE_VERSION=4.0.0
|
|
|
|
QRENCODE_HASH="c90035e16921117d4086a7fdee65aab85be32beb4a376f6b664b8a425d327d0b"
|
2018-03-03 04:44:09 +08:00
|
|
|
QRENCODE_FILENAME="qrencode-$QRENCODE_VERSION.tar.bz2"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$QRENCODE_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$QRENCODE_PREFIX_DIR"
|
|
|
|
mkdir -p "$QRENCODE_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget https://fukuchi.org/works/qrencode/$QRENCODE_FILENAME
|
|
|
|
check_sha256 "$QRENCODE_HASH" "$QRENCODE_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$QRENCODE_FILENAME"
|
|
|
|
rm $QRENCODE_FILENAME
|
2017-07-25 18:55:40 +08:00
|
|
|
cd qrencode*
|
|
|
|
|
|
|
|
CFLAGS="-O2 -g0" ./configure --host="$ARCH-w64-mingw32" \
|
|
|
|
--prefix="$QRENCODE_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-sdltest \
|
|
|
|
--without-tools \
|
|
|
|
--without-debug
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $QRENCODE_VERSION > $QRENCODE_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./qrencode*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of QREncode `cat $QRENCODE_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-09-22 09:12:32 +08:00
|
|
|
# Exif
|
|
|
|
|
|
|
|
EXIF_PREFIX_DIR="$DEP_DIR/libexif"
|
2017-10-14 19:55:44 +08:00
|
|
|
EXIF_VERSION=0.6.21
|
|
|
|
EXIF_HASH="16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a"
|
2018-03-03 04:44:09 +08:00
|
|
|
EXIF_FILENAME=libexif-$EXIF_VERSION.tar.bz2
|
2017-09-22 09:12:32 +08:00
|
|
|
if [ ! -f "$EXIF_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$EXIF_PREFIX_DIR"
|
|
|
|
mkdir -p "$EXIF_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget https://sourceforge.net/projects/libexif/files/libexif/$EXIF_VERSION/$EXIF_FILENAME
|
|
|
|
check_sha256 "$EXIF_HASH" "$EXIF_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf $EXIF_FILENAME
|
|
|
|
rm $EXIF_FILENAME
|
2017-09-22 09:12:32 +08:00
|
|
|
cd libexif*
|
|
|
|
|
|
|
|
CFLAGS="-O2 -g0" ./configure --host="$ARCH-w64-mingw32" \
|
|
|
|
--prefix="$EXIF_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-docs \
|
|
|
|
--disable-nls
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $EXIF_VERSION > $EXIF_PREFIX_DIR/done
|
2017-09-22 09:12:32 +08:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./libexif*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Exif `cat $EXIF_PREFIX_DIR/done`"
|
2017-09-22 09:12:32 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
# Opus
|
|
|
|
|
|
|
|
OPUS_PREFIX_DIR="$DEP_DIR/libopus"
|
2017-10-22 05:17:51 +08:00
|
|
|
OPUS_VERSION=1.2.1
|
|
|
|
OPUS_HASH="cfafd339ccd9c5ef8d6ab15d7e1a412c054bf4cb4ecbbbcc78c12ef2def70732"
|
2018-03-03 04:44:09 +08:00
|
|
|
OPUS_FILENAME="opus-$OPUS_VERSION.tar.gz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$OPUS_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$OPUS_PREFIX_DIR"
|
|
|
|
mkdir -p "$OPUS_PREFIX_DIR"
|
2017-09-22 09:12:32 +08:00
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://archive.mozilla.org/pub/opus/$OPUS_FILENAME"
|
|
|
|
check_sha256 "$OPUS_HASH" "$OPUS_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$OPUS_FILENAME"
|
|
|
|
rm $OPUS_FILENAME
|
2017-10-22 05:17:51 +08:00
|
|
|
cd opus*
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
CFLAGS="-O2 -g0" ./configure --host="$ARCH-w64-mingw32" \
|
|
|
|
--prefix="$OPUS_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-extra-programs \
|
|
|
|
--disable-doc
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $OPUS_VERSION > $OPUS_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
2017-10-22 05:17:51 +08:00
|
|
|
rm -rf ./opus*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Opus `cat $OPUS_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Sodium
|
|
|
|
|
|
|
|
SODIUM_PREFIX_DIR="$DEP_DIR/libsodium"
|
2018-04-03 01:28:52 +08:00
|
|
|
SODIUM_VERSION=1.0.16
|
|
|
|
SODIUM_HASH="eeadc7e1e1bcef09680fb4837d448fbdf57224978f865ac1c16745868fbd0533"
|
2018-03-03 04:44:09 +08:00
|
|
|
SODIUM_FILENAME="libsodium-$SODIUM_VERSION.tar.gz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$SODIUM_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$SODIUM_PREFIX_DIR"
|
|
|
|
mkdir -p "$SODIUM_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget "https://download.libsodium.org/libsodium/releases/$SODIUM_FILENAME"
|
|
|
|
check_sha256 "$SODIUM_HASH" "$SODIUM_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$SODIUM_FILENAME"
|
|
|
|
rm "$SODIUM_FILENAME"
|
2017-10-22 05:17:51 +08:00
|
|
|
cd libsodium*
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
./configure --host="$ARCH-w64-mingw32" \
|
|
|
|
--prefix="$SODIUM_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--with-pic
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $SODIUM_VERSION > $SODIUM_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
2017-10-22 05:17:51 +08:00
|
|
|
rm -rf ./libsodium*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Sodium `cat $SODIUM_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# VPX
|
|
|
|
|
|
|
|
VPX_PREFIX_DIR="$DEP_DIR/libvpx"
|
2018-04-03 01:36:42 +08:00
|
|
|
VPX_VERSION=v1.7.0
|
|
|
|
VPX_HASH="1fec931eb5c94279ad219a5b6e0202358e94a93a90cfb1603578c326abfc1238"
|
2018-03-03 04:44:09 +08:00
|
|
|
VPX_FILENAME="libvpx-$VPX_VERSION.tar.bz2"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$VPX_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$VPX_PREFIX_DIR"
|
|
|
|
mkdir -p "$VPX_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget https://github.com/webmproject/libvpx/archive/$VPX_VERSION.tar.gz -O $VPX_FILENAME
|
|
|
|
check_sha256 "$VPX_HASH" "$VPX_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$VPX_FILENAME"
|
|
|
|
rm $VPX_FILENAME
|
2017-10-22 05:17:51 +08:00
|
|
|
cd libvpx*
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
if [[ "$ARCH" == "x86_64" ]]
|
|
|
|
then
|
|
|
|
VPX_TARGET=x86_64-win64-gcc
|
|
|
|
elif [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
|
|
|
VPX_TARGET=x86-win32-gcc
|
|
|
|
fi
|
|
|
|
|
|
|
|
CROSS="$ARCH-w64-mingw32-" ./configure --target="$VPX_TARGET" \
|
2017-10-14 19:55:44 +08:00
|
|
|
--prefix="$VPX_PREFIX_DIR" \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-examples \
|
|
|
|
--disable-tools \
|
|
|
|
--disable-docs \
|
|
|
|
--disable-unit-tests
|
2017-07-25 18:55:40 +08:00
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $VPX_VERSION > $VPX_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
cd ..
|
2017-10-22 05:17:51 +08:00
|
|
|
rm -rf ./libvpx*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of VPX `cat $VPX_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Toxcore
|
|
|
|
|
|
|
|
TOXCORE_PREFIX_DIR="$DEP_DIR/libtoxcore"
|
2018-04-18 11:01:55 +08:00
|
|
|
TOXCORE_VERSION=0.2.2
|
|
|
|
TOXCORE_HASH=a3b25d8bd92b9526b47ba1f60a2893d2154a80bb7ae690f44b5a2dea41c76ea1
|
2018-03-03 04:44:09 +08:00
|
|
|
TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"
|
2017-07-25 18:55:40 +08:00
|
|
|
if [ ! -f "$TOXCORE_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$TOXCORE_PREFIX_DIR"
|
|
|
|
mkdir -p "$TOXCORE_PREFIX_DIR"
|
|
|
|
|
2018-03-03 04:44:09 +08:00
|
|
|
wget https://github.com/TokTok/c-toxcore/archive/v$TOXCORE_VERSION.tar.gz -O $TOXCORE_FILENAME
|
|
|
|
check_sha256 "$TOXCORE_HASH" "$TOXCORE_FILENAME"
|
|
|
|
bsdtar --no-same-owner --no-same-permissions -xf "$TOXCORE_FILENAME"
|
|
|
|
rm "$TOXCORE_FILENAME"
|
2017-10-22 05:17:51 +08:00
|
|
|
cd c-toxcore*
|
|
|
|
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
export PKG_CONFIG_PATH="$OPUS_PREFIX_DIR/lib/pkgconfig:$SODIUM_PREFIX_DIR/lib/pkgconfig:$VPX_PREFIX_DIR/lib/pkgconfig"
|
|
|
|
export PKG_CONFIG_LIBDIR="/usr/$ARCH-w64-mingw32"
|
|
|
|
|
|
|
|
echo "
|
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
|
|
|
|
|
|
|
SET(CMAKE_C_COMPILER $ARCH-w64-mingw32-gcc)
|
|
|
|
SET(CMAKE_CXX_COMPILER $ARCH-w64-mingw32-g++)
|
|
|
|
SET(CMAKE_RC_COMPILER $ARCH-w64-mingw32-windres)
|
|
|
|
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH /usr/$ARCH-w64-mingw32 $OPUS_PREFIX_DIR $SODIUM_PREFIX_DIR $VPX_PREFIX_DIR)
|
|
|
|
" > toolchain.cmake
|
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=$TOXCORE_PREFIX_DIR \
|
2017-10-22 05:17:51 +08:00
|
|
|
-DBOOTSTRAP_DAEMON=OFF \
|
|
|
|
-DWARNINGS=OFF \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DENABLE_STATIC=ON \
|
|
|
|
-DENABLE_SHARED=OFF \
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE=toolchain.cmake \
|
|
|
|
..
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
2017-10-14 19:55:44 +08:00
|
|
|
echo -n $TOXCORE_VERSION > $TOXCORE_PREFIX_DIR/done
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
unset PKG_CONFIG_PATH
|
|
|
|
unset PKG_CONFIG_LIBDIR
|
|
|
|
|
|
|
|
cd ..
|
2017-10-22 05:17:51 +08:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./c-toxcore*
|
2017-10-14 19:55:44 +08:00
|
|
|
else
|
|
|
|
echo "Using cached build of Toxcore `cat $TOXCORE_PREFIX_DIR/done`"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2017-10-22 05:17:51 +08:00
|
|
|
# mingw-w64-debug-scripts
|
|
|
|
|
|
|
|
MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR="$DEP_DIR/mingw-w64-debug-scripts"
|
|
|
|
MINGW_W64_DEBUG_SCRIPTS_VERSION=7341e1ffdea352e5557f3fcae51569f13e1ef270
|
|
|
|
MINGW_W64_DEBUG_SCRIPTS_HASH="a92883ddfe83780818347fda4ac07bce61df9226818df2f52fe4398fe733e204"
|
|
|
|
if [ ! -f "$MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR"
|
|
|
|
mkdir -p "$MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR"
|
|
|
|
|
|
|
|
# Get dbg executable and the debug scripts
|
|
|
|
git clone https://github.com/nurupo/mingw-w64-debug-scripts mingw-w64-debug-scripts
|
|
|
|
cd mingw-w64-debug-scripts
|
|
|
|
git checkout $MINGW_W64_DEBUG_SCRIPTS_VERSION
|
|
|
|
check_sha256_git "$MINGW_W64_DEBUG_SCRIPTS_HASH"
|
|
|
|
|
|
|
|
make $ARCH EXE_NAME=qtox.exe
|
|
|
|
mkdir -p "$MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/bin"
|
|
|
|
mv output/$ARCH/* "$MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/bin/"
|
|
|
|
echo -n $MINGW_W64_DEBUG_SCRIPTS_VERSION > $MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/done
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./mingw-w64-debug-scripts
|
|
|
|
else
|
|
|
|
echo "Using cached build of mingw-w64-debug-scripts `cat $MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/done`"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2018-04-04 09:18:08 +08:00
|
|
|
# NSIS
|
|
|
|
|
|
|
|
NSIS_PREFIX_DIR="$DEP_DIR/nsis"
|
|
|
|
NSIS_VERSION="Debian Unstable"
|
|
|
|
#NSIS_HASH=
|
|
|
|
if [ ! -f "$NSIS_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$NSIS_PREFIX_DIR"
|
|
|
|
mkdir -p "$NSIS_PREFIX_DIR"
|
|
|
|
|
|
|
|
# We want to use NSIS 3, instead of NSIS 2, because it added Windows 8 and 10
|
|
|
|
# support, as well as unicode support. NSIS 3 is not packaged in Debian Stretch
|
2018-05-07 17:03:01 +08:00
|
|
|
# and building it manually appears to be quite a challenge. Luckily it's
|
|
|
|
# packaged in Debian Unstable, so we can backport it to our Debian version
|
2018-04-04 09:18:08 +08:00
|
|
|
# with little effort, utilizing maintainer's build script.
|
|
|
|
|
2018-05-07 17:03:01 +08:00
|
|
|
# Keep the indentation of the next echo command as it is, as apt seems to
|
2018-04-04 09:18:08 +08:00
|
|
|
# ignore preferences starting with whitespace.
|
|
|
|
echo "
|
|
|
|
Package: *
|
|
|
|
Pin: Release a=unstable
|
|
|
|
Pin-Priority: -1
|
|
|
|
" >> /etc/apt/preferences
|
|
|
|
echo "
|
|
|
|
# Needed for NSIS 3
|
|
|
|
deb http://httpredir.debian.org/debian unstable main
|
|
|
|
deb-src http://httpredir.debian.org/debian unstable main
|
|
|
|
" >> /etc/apt/sources.list
|
|
|
|
apt-get update
|
|
|
|
# Get dependencies required for building NSIS
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
|
|
build-essential \
|
|
|
|
devscripts \
|
|
|
|
docbook-xsl-ns \
|
|
|
|
docbook5-xml \
|
|
|
|
dpkg-dev \
|
|
|
|
fakeroot \
|
|
|
|
html2text \
|
|
|
|
libcppunit-dev \
|
|
|
|
mingw-w64 \
|
|
|
|
scons \
|
|
|
|
xsltproc \
|
|
|
|
zlib1g-dev
|
|
|
|
apt-get -t unstable install -y --no-install-recommends debhelper
|
|
|
|
mkdir nsis-build
|
|
|
|
cd nsis-build
|
|
|
|
apt-get -t unstable source nsis
|
|
|
|
|
|
|
|
cd nsis-*
|
|
|
|
# The build script is not parallel enough, this speeds things up greatly
|
|
|
|
sed -i "s/scons / scons -j `nproc` /" debian/rules
|
|
|
|
DEB_BUILD_OPTIONS="parallel=`nproc` nocheck" debuild -b -uc -us
|
|
|
|
cd ..
|
|
|
|
mv nsis-common_*.deb "$NSIS_PREFIX_DIR"
|
|
|
|
mv nsis-doc_*.deb "$NSIS_PREFIX_DIR"
|
|
|
|
mv nsis_*.deb "$NSIS_PREFIX_DIR"
|
|
|
|
mv nsis-pluginapi_*.deb "$NSIS_PREFIX_DIR"
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
rm -rf ./nsis-build
|
|
|
|
|
|
|
|
echo -n $NSIS_VERSION > $NSIS_PREFIX_DIR/done
|
|
|
|
else
|
|
|
|
echo "Using cached build of NSIS `cat $NSIS_PREFIX_DIR/done`"
|
|
|
|
fi
|
|
|
|
# Install NSIS
|
|
|
|
dpkg -i "$NSIS_PREFIX_DIR"/nsis-common_*.deb
|
|
|
|
dpkg -i "$NSIS_PREFIX_DIR"/nsis-doc_*.deb
|
|
|
|
dpkg -i "$NSIS_PREFIX_DIR"/nsis_*.deb
|
|
|
|
dpkg -i "$NSIS_PREFIX_DIR"/nsis-pluginapi_*.deb
|
|
|
|
|
|
|
|
|
|
|
|
# NSIS ShellExecAsUser plugin
|
|
|
|
|
|
|
|
NSISSHELLEXECASUSER_PREFIX_DIR="$DEP_DIR/nsis_shellexecuteasuser"
|
|
|
|
NSISSHELLEXECASUSER_VERSION=" "
|
|
|
|
NSISSHELLEXECASUSER_HASH="8fc19829e144716a422b15a85e718e1816fe561de379b2b5ae87ef9017490799"
|
|
|
|
if [ ! -f "$NSISSHELLEXECASUSER_PREFIX_DIR/done" ]
|
|
|
|
then
|
|
|
|
rm -rf "$NSISSHELLEXECASUSER_PREFIX_DIR"
|
|
|
|
mkdir -p "$NSISSHELLEXECASUSER_PREFIX_DIR"
|
|
|
|
|
|
|
|
# Backup: https://web.archive.org/web/20171008011417/http://nsis.sourceforge.net/mediawiki/images/c/c7/ShellExecAsUser.zip
|
|
|
|
wget http://nsis.sourceforge.net/mediawiki/images/c/c7/ShellExecAsUser.zip
|
|
|
|
check_sha256 "$NSISSHELLEXECASUSER_HASH" "ShellExecAsUser.zip"
|
|
|
|
unzip ShellExecAsUser.zip 'ShellExecAsUser.dll'
|
|
|
|
|
|
|
|
mkdir "$NSISSHELLEXECASUSER_PREFIX_DIR/bin"
|
|
|
|
mv ShellExecAsUser.dll "$NSISSHELLEXECASUSER_PREFIX_DIR/bin"
|
|
|
|
rm ShellExecAsUser*
|
|
|
|
echo -n $NSISSHELLEXECASUSER_VERSION > $NSISSHELLEXECASUSER_PREFIX_DIR/done
|
|
|
|
else
|
|
|
|
echo "Using cached build of NSIS ShellExecAsUser plugin `cat $NSISSHELLEXECASUSER_PREFIX_DIR/done`"
|
|
|
|
fi
|
|
|
|
# Install ShellExecAsUser plugin
|
|
|
|
cp "$NSISSHELLEXECASUSER_PREFIX_DIR/bin/ShellExecAsUser.dll" /usr/share/nsis/Plugins/x86-ansi/
|
|
|
|
|
|
|
|
|
2017-10-14 19:55:44 +08:00
|
|
|
# Stop here if running the second stage on Travis CI
|
|
|
|
set +u
|
2017-10-24 15:10:03 +08:00
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage2" ]]
|
2017-10-14 19:55:44 +08:00
|
|
|
then
|
|
|
|
# Strip to reduce cache size
|
|
|
|
strip_all
|
|
|
|
# Chmod since everything is root:root
|
|
|
|
chmod 777 -R "$WORKSPACE_DIR"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
set -u
|
2017-07-25 18:55:40 +08:00
|
|
|
|
2017-10-22 05:17:51 +08:00
|
|
|
|
2017-10-14 19:55:44 +08:00
|
|
|
strip_all
|
2017-07-25 18:55:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
# qTox
|
|
|
|
|
|
|
|
QTOX_PREFIX_DIR="$WORKSPACE_DIR/$ARCH/qtox/$BUILD_TYPE"
|
|
|
|
rm -rf "$QTOX_PREFIX_DIR"
|
|
|
|
mkdir -p "$QTOX_PREFIX_DIR"
|
|
|
|
|
|
|
|
rm -rf ./qtox
|
|
|
|
mkdir -p qtox
|
|
|
|
cd qtox
|
|
|
|
cp -a $QTOX_SRC_DIR/. .
|
|
|
|
|
2017-08-12 05:57:15 +08:00
|
|
|
rm -rf ./build
|
2017-10-22 05:17:51 +08:00
|
|
|
mkdir -p build
|
2017-07-25 18:55:40 +08:00
|
|
|
cd build
|
|
|
|
|
|
|
|
PKG_CONFIG_PATH=""
|
|
|
|
PKG_CONFIG_LIBDIR=""
|
|
|
|
CMAKE_FIND_ROOT_PATH=""
|
|
|
|
for PREFIX_DIR in $DEP_DIR/*; do
|
|
|
|
if [ -d $PREFIX_DIR/lib/pkgconfig ]
|
|
|
|
then
|
|
|
|
export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$PREFIX_DIR/lib/pkgconfig"
|
|
|
|
export PKG_CONFIG_LIBDIR="$PKG_CONFIG_LIBDIR:$PREFIX_DIR/lib/pkgconfig"
|
|
|
|
fi
|
2017-08-23 07:38:22 +08:00
|
|
|
CMAKE_FIND_ROOT_PATH="$CMAKE_FIND_ROOT_PATH $PREFIX_DIR"
|
2017-07-25 18:55:40 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "
|
|
|
|
SET(CMAKE_SYSTEM_NAME Windows)
|
|
|
|
|
|
|
|
SET(CMAKE_C_COMPILER $ARCH-w64-mingw32-gcc)
|
|
|
|
SET(CMAKE_CXX_COMPILER $ARCH-w64-mingw32-g++)
|
|
|
|
SET(CMAKE_RC_COMPILER $ARCH-w64-mingw32-windres)
|
|
|
|
|
|
|
|
SET(CMAKE_FIND_ROOT_PATH /usr/$ARCH-w64-mingw32 $CMAKE_FIND_ROOT_PATH)
|
|
|
|
" > toolchain.cmake
|
|
|
|
|
2017-10-24 15:10:03 +08:00
|
|
|
set +u
|
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage3" ]]
|
|
|
|
then
|
|
|
|
echo "SET(TEST_CROSSCOMPILING_EMULATOR /usr/bin/wine)" >> toolchain.cmake
|
|
|
|
fi
|
|
|
|
set -u
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
if [[ "$BUILD_TYPE" == "release" ]]
|
|
|
|
then
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=./toolchain.cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
..
|
|
|
|
elif [[ "$BUILD_TYPE" == "debug" ]]
|
|
|
|
then
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE=./toolchain.cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
|
|
|
..
|
|
|
|
fi
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
cp qtox.exe $QTOX_PREFIX_DIR
|
|
|
|
cp $QT_PREFIX_DIR/bin/Qt5Core.dll \
|
|
|
|
$QT_PREFIX_DIR/bin/Qt5Gui.dll \
|
|
|
|
$QT_PREFIX_DIR/bin/Qt5Network.dll \
|
|
|
|
$QT_PREFIX_DIR/bin/Qt5Svg.dll \
|
|
|
|
$QT_PREFIX_DIR/bin/Qt5Widgets.dll \
|
|
|
|
$QT_PREFIX_DIR/bin/Qt5Xml.dll \
|
|
|
|
$QTOX_PREFIX_DIR
|
|
|
|
cp -r $QT_PREFIX_DIR/plugins/imageformats \
|
|
|
|
$QT_PREFIX_DIR/plugins/platforms \
|
|
|
|
$QT_PREFIX_DIR/plugins/iconengines \
|
|
|
|
$QTOX_PREFIX_DIR
|
|
|
|
cp $OPENAL_PREFIX_DIR/bin/OpenAL32.dll $QTOX_PREFIX_DIR
|
|
|
|
cp $OPENSSL_PREFIX_DIR/bin/ssleay32.dll \
|
|
|
|
$OPENSSL_PREFIX_DIR/bin/libeay32.dll \
|
|
|
|
$QTOX_PREFIX_DIR
|
|
|
|
cp /usr/lib/gcc/$ARCH-w64-mingw32/*-posix/libgcc_s_*.dll $QTOX_PREFIX_DIR
|
|
|
|
cp /usr/lib/gcc/$ARCH-w64-mingw32/*-posix/libstdc++-6.dll $QTOX_PREFIX_DIR
|
|
|
|
cp /usr/$ARCH-w64-mingw32/lib/libwinpthread-1.dll $QTOX_PREFIX_DIR
|
|
|
|
|
2017-10-24 15:10:03 +08:00
|
|
|
set +u
|
|
|
|
if [[ "$TRAVIS_CI_STAGE" == "stage3" ]]
|
|
|
|
then
|
|
|
|
# Setup wine
|
|
|
|
if [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
|
|
|
export WINEARCH=win32
|
|
|
|
elif [[ "$ARCH" == "x86_64" ]]
|
|
|
|
then
|
|
|
|
export WINEARCH=win64
|
|
|
|
fi
|
|
|
|
winecfg
|
|
|
|
# Add libgcc_s_*.dll, libwinpthread-1.dll, QtTest.dll, etc. into PATH env var of wine
|
|
|
|
export WINEPATH=`cd $QTOX_PREFIX_DIR ; winepath -w $(pwd)`\;`winepath -w $QT_PREFIX_DIR/bin/`
|
|
|
|
export CTEST_OUTPUT_ON_FAILURE=1
|
|
|
|
make test
|
|
|
|
fi
|
|
|
|
set -u
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Setup gdb
|
|
|
|
if [[ "$BUILD_TYPE" == "debug" ]]
|
|
|
|
then
|
|
|
|
# Copy over qTox source code so that dbg could pick it up
|
|
|
|
mkdir -p "$QTOX_PREFIX_DIR/$PWD/src"
|
|
|
|
cp -r "$PWD/src" "$QTOX_PREFIX_DIR/$PWD"
|
|
|
|
|
|
|
|
# Get dbg executable and the debug scripts
|
2017-10-22 05:17:51 +08:00
|
|
|
cp -r $MINGW_W64_DEBUG_SCRIPTS_PREFIX_DIR/bin/* "$QTOX_PREFIX_DIR/"
|
2017-07-25 18:55:40 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Strip
|
|
|
|
set +e
|
|
|
|
if [[ "$BUILD_TYPE" == "release" ]]
|
|
|
|
then
|
|
|
|
$ARCH-w64-mingw32-strip -s $QTOX_PREFIX_DIR/*.exe
|
|
|
|
fi
|
|
|
|
$ARCH-w64-mingw32-strip -s $QTOX_PREFIX_DIR/*.dll
|
|
|
|
$ARCH-w64-mingw32-strip -s $QTOX_PREFIX_DIR/*/*.dll
|
|
|
|
set -e
|
|
|
|
|
2018-04-04 09:19:49 +08:00
|
|
|
# Create zip
|
|
|
|
cd $QTOX_PREFIX_DIR
|
2018-04-03 03:31:29 +08:00
|
|
|
zip qtox-"$ARCH"-"$BUILD_TYPE".zip -r *
|
2018-04-04 09:19:49 +08:00
|
|
|
cd -
|
|
|
|
|
2018-04-04 09:18:08 +08:00
|
|
|
# Create installer
|
2018-03-18 21:27:26 +08:00
|
|
|
if [[ "$BUILD_TYPE" == "release" ]]
|
|
|
|
then
|
|
|
|
cd windows
|
|
|
|
|
2018-04-04 09:18:08 +08:00
|
|
|
# The installer creation script expects all the files to be in qtox/*
|
2018-03-18 21:27:26 +08:00
|
|
|
mkdir qtox
|
2018-04-04 09:18:08 +08:00
|
|
|
cp -r $QTOX_PREFIX_DIR/* ./qtox
|
2018-04-04 09:19:49 +08:00
|
|
|
rm ./qtox/*.zip
|
2018-03-18 21:27:26 +08:00
|
|
|
|
|
|
|
# Select the installer script for the correct architecture
|
|
|
|
if [[ "$ARCH" == "i686" ]]
|
|
|
|
then
|
2018-04-04 09:18:08 +08:00
|
|
|
makensis qtox.nsi
|
2018-03-18 21:27:26 +08:00
|
|
|
elif [[ "$ARCH" == "x86_64" ]]
|
|
|
|
then
|
2018-04-04 09:18:08 +08:00
|
|
|
makensis qtox64.nsi
|
2018-03-18 21:27:26 +08:00
|
|
|
fi
|
|
|
|
|
2018-04-03 03:31:29 +08:00
|
|
|
cp setup-qtox.exe $QTOX_PREFIX_DIR/setup-qtox-"$ARCH"-"$BUILD_TYPE".exe
|
2018-03-18 21:27:26 +08:00
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
|
2017-07-25 18:55:40 +08:00
|
|
|
cd ..
|
|
|
|
rm -rf ./qtox
|
|
|
|
|
|
|
|
# Chmod since everything is root:root
|
|
|
|
chmod 777 -R "$WORKSPACE_DIR"
|