2016-01-26 19:52:15 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-01-26 19:55:28 +08:00
|
|
|
#
|
|
|
|
# Copyright © 2015 by RowenStipe
|
|
|
|
# Copyright © 2016 by The qTox Project
|
|
|
|
#
|
|
|
|
# This program is libre software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-01-26 19:52:15 +08:00
|
|
|
# This uses the same process as doing it manually but with a few varients
|
|
|
|
|
2016-01-26 19:55:28 +08:00
|
|
|
# Use: ./qTox-Mac-Deployer-ULTIMATE.sh -h
|
2016-01-26 19:52:15 +08:00
|
|
|
|
2016-07-30 01:57:42 +08:00
|
|
|
set -e
|
|
|
|
|
2016-01-26 19:52:15 +08:00
|
|
|
# Your home DIR really (Most of this happens in it) {DONT USE: ~ }
|
2016-05-29 07:21:53 +08:00
|
|
|
SUBGIT="" #Change this to define a 'sub' git folder e.g. "-Patch"
|
2016-09-27 10:15:52 +08:00
|
|
|
#Applies to $QTOX_DIR, $BUILD_DIR, and $DEPLOY_DIR folders for organization puropses
|
2016-05-29 07:21:53 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
if [[ $TRAVIS = true ]]
|
|
|
|
then
|
|
|
|
MAIN_DIR="${TRAVIS_BUILD_DIR}"
|
|
|
|
QTOX_DIR="${MAIN_DIR}"
|
2016-01-26 19:52:15 +08:00
|
|
|
else
|
2016-09-27 10:15:52 +08:00
|
|
|
MAIN_DIR="/Users/${USER}"
|
|
|
|
QTOX_DIR="${MAIN_DIR}/qTox${SUBGIT}"
|
2016-01-26 19:52:15 +08:00
|
|
|
fi
|
|
|
|
QT_DIR="/usr/local/Cellar/qt5" # Folder name of QT install
|
2016-03-23 01:52:38 +08:00
|
|
|
# Figure out latest version
|
|
|
|
QT_VER=($(ls ${QT_DIR} | sed -n -e 's/^\([0-9]*\.([0-9]*\.([0-9]*\).*/\1/' -e '1p;$p'))
|
|
|
|
QT_DIR_VER="${QT_DIR}/${QT_VER[1]}"
|
|
|
|
|
|
|
|
QMAKE="${QT_DIR_VER}/bin/qmake" # Don't change
|
|
|
|
MACDEPLOYQT="${QT_DIR_VER}/bin/macdeployqt" # Don't change
|
2016-01-26 19:52:15 +08:00
|
|
|
|
|
|
|
TOXCORE_DIR="${MAIN_DIR}/toxcore" # Change to Git location
|
|
|
|
|
2016-01-27 00:49:10 +08:00
|
|
|
LIB_INSTALL_PREFIX="${QTOX_DIR}/libs"
|
2016-01-26 19:52:15 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
[[ ! -e "${LIB_INSTALL_PREFIX}" ]] \
|
|
|
|
&& mkdir -p "${LIB_INSTALL_PREFIX}"
|
2016-01-27 09:22:04 +08:00
|
|
|
|
2016-05-29 07:21:53 +08:00
|
|
|
BUILD_DIR="${MAIN_DIR}/qTox-Mac_Build${SUBGIT}"
|
|
|
|
DEPLOY_DIR="${MAIN_DIR}/qTox-Mac_Deployed${SUBGIT}"
|
2016-01-26 19:52:15 +08:00
|
|
|
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
# helper function to "pretty-print"
|
|
|
|
fcho() {
|
|
|
|
local msg="$1"; shift
|
|
|
|
printf "\n$msg\n" "$@"
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
build_toxcore() {
|
|
|
|
echo "Starting Toxcore build and install"
|
|
|
|
cd $TOXCORE_DIR
|
|
|
|
echo "Now working in: ${PWD}"
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
local LS_DIR="/usr/local/Cellar/libsodium/"
|
|
|
|
#Figure out latest version
|
|
|
|
local LS_VER=($(ls ${LS_DIR} | sed -n -e 's/^\([0-9]*\.([0-9]*\.([0-9]*\).*/\1/' -e '1p;$p'))
|
|
|
|
local LS_DIR_VER="${LS_DIR}/${LS_VER[1]}"
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
[[ $TRAVIS != true ]] \
|
|
|
|
&& sleep 3
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
autoreconf -if
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
#Make sure the correct version of libsodium is used
|
|
|
|
./configure --with-libsodium-headers="${LS_DIR_VER}/include/" --with-libsodium-libs="${LS_DIR_VER}/lib/" --prefix="${LIB_INSTALL_PREFIX}"
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
make clean &> /dev/null
|
|
|
|
fcho "Compiling toxcore."
|
|
|
|
make > /dev/null || exit 1
|
|
|
|
fcho "Installing toxcore."
|
|
|
|
make install > /dev/null || exit 1
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
install() {
|
|
|
|
fcho "=============================="
|
|
|
|
fcho "This script will install the necessary applications and libraries needed to compile qTox properly."
|
|
|
|
fcho "Note that this is not a 100 percent automated install it just helps simplify the process for less experienced or lazy users."
|
|
|
|
if [[ $TRAVIS = true ]]
|
|
|
|
then
|
|
|
|
echo "Oh... It's just Travis...."
|
|
|
|
else
|
|
|
|
read -n1 -rsp $'Press any key to continue or Ctrl+C to exit...\n'
|
|
|
|
fi
|
|
|
|
|
|
|
|
#fcho "Installing x-code Command line tools ..."
|
|
|
|
#xcode-select --install
|
|
|
|
|
|
|
|
if [[ -e /usr/local/bin/brew ]]
|
|
|
|
then
|
|
|
|
fcho "Homebrew already installed!"
|
|
|
|
else
|
|
|
|
fcho "Installing homebrew ..."
|
|
|
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
|
|
fi
|
|
|
|
if [[ $TRAVIS != true ]]
|
|
|
|
then
|
|
|
|
fcho "Updating brew formulas ..."
|
|
|
|
brew update
|
|
|
|
fi
|
|
|
|
fcho "Getting home brew formulas ..."
|
|
|
|
if [[ $TRAVIS != true ]]
|
|
|
|
then
|
|
|
|
sleep 3
|
|
|
|
brew install git wget libtool autoconf automake
|
|
|
|
fi
|
|
|
|
brew install check libvpx opus libsodium
|
|
|
|
|
|
|
|
fcho "Starting git repo checks ..."
|
|
|
|
|
|
|
|
#cd $MAIN_DIR # just in case
|
|
|
|
# Toxcore
|
|
|
|
if [[ -e $TOX_DIR/.git/index ]]
|
|
|
|
then
|
|
|
|
fcho "Toxcore git repo already in place !"
|
|
|
|
cd $TOX_DIR
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
fcho "Cloning Toxcore git ... "
|
2016-11-06 09:19:19 +08:00
|
|
|
git clone --depth=1 https://github.com/irungentoo/toxcore "$TOXCORE_DIR"
|
2016-09-27 10:15:52 +08:00
|
|
|
fi
|
|
|
|
# qTox
|
|
|
|
if [[ $TRAVIS = true ]]
|
|
|
|
then
|
|
|
|
fcho "Travis... You already have qTox..."
|
|
|
|
else
|
|
|
|
if [[ -e $QTOX_DIR/.git/index ]]
|
|
|
|
then
|
|
|
|
fcho "qTox git repo already in place !"
|
|
|
|
cd $QTOX_DIR
|
|
|
|
git pull
|
|
|
|
else
|
|
|
|
fcho "Cloning qTox git ... "
|
|
|
|
git clone https://github.com/qTox/qTox.git
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
# toxcore build
|
|
|
|
if [[ $TRAVIS = true ]]
|
|
|
|
then
|
|
|
|
build_toxcore
|
|
|
|
else
|
|
|
|
fcho "If all went well you should now have all the tools needed to compile qTox!"
|
|
|
|
read -r -p "Would you like to install toxcore now? [y/N] " response
|
|
|
|
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
|
|
|
|
then
|
|
|
|
build_toxcore
|
|
|
|
else
|
|
|
|
fcho "You can simply use the -u command and say [Yes/n] when prompted"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $TRAVIS = true ]]
|
|
|
|
then
|
|
|
|
fcho "Updating brew formulas ..."
|
|
|
|
brew update > /dev/null
|
|
|
|
fi
|
|
|
|
brew install ffmpeg qrencode qt5 sqlcipher
|
|
|
|
|
|
|
|
QT_VER=($(ls ${QT_DIR} | sed -n -e 's/^\([0-9]*\.([0-9]*\.([0-9]*\).*/\1/' -e '1p;$p'))
|
|
|
|
QT_DIR_VER="${QT_DIR}/${QT_VER[1]}"
|
|
|
|
|
|
|
|
# put required by qTox libs/headers in `libs/`
|
|
|
|
cd "${QTOX_DIR}"
|
|
|
|
sudo ./bootstrap-osx.sh
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
update() {
|
|
|
|
fcho "------------------------------"
|
|
|
|
fcho "Starting update process ..."
|
|
|
|
#First update Toxcore from git
|
|
|
|
cd $TOXCORE_DIR
|
|
|
|
fcho "Now in ${PWD}"
|
|
|
|
fcho "Pulling ..."
|
|
|
|
git pull
|
|
|
|
read -r -p "Did Toxcore update from git? [y/N] " response
|
|
|
|
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
|
|
|
|
then
|
|
|
|
build_toxcore
|
|
|
|
else
|
|
|
|
fcho "Moving on!"
|
|
|
|
fi
|
|
|
|
|
|
|
|
#Now let's update qTox!
|
|
|
|
cd $QTOX_DIR
|
|
|
|
fcho "Now in ${PWD}"
|
|
|
|
fcho "Pulling ..."
|
|
|
|
git pull
|
|
|
|
read -r -p "Did qTox update from git? [y/N] " response
|
|
|
|
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
|
|
|
|
then
|
|
|
|
fcho "Starting OSX bootstrap ..."
|
|
|
|
sudo ./bootstrap-osx.sh
|
|
|
|
else
|
|
|
|
fcho "Moving on!"
|
|
|
|
fi
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
build() {
|
|
|
|
fcho "------------------------------"
|
|
|
|
fcho "Starting build process ..."
|
|
|
|
rm -rf $BUILD_DIR
|
|
|
|
rm -rf $DEPLOY_DIR
|
|
|
|
mkdir $BUILD_DIR
|
|
|
|
cd $BUILD_DIR
|
|
|
|
fcho "Now working in ${PWD}"
|
|
|
|
fcho "Starting qmake ... "
|
|
|
|
$QMAKE $QTOX_DIR/qtox.pro
|
|
|
|
make
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
deploy() {
|
|
|
|
fcho "------------------------------"
|
|
|
|
fcho "starting deployment process ..."
|
|
|
|
cd $BUILD_DIR
|
|
|
|
if [ ! -d $BUILD_DIR ]
|
|
|
|
then
|
|
|
|
fcho "Error: Build directory not detected, please run -ubd, or -b before deploying"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
mkdir $DEPLOY_DIR
|
|
|
|
cp -r $BUILD_DIR/qTox.app $DEPLOY_DIR/qTox.app
|
|
|
|
cd $DEPLOY_DIR
|
|
|
|
fcho "Now working in ${PWD}"
|
|
|
|
$MACDEPLOYQT qTox.app
|
2016-01-26 19:52:15 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
bootstrap() {
|
|
|
|
fcho "------------------------------"
|
|
|
|
fcho "starting bootstrap process ..."
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
#Toxcore
|
|
|
|
build_toxcore
|
2016-07-30 01:57:42 +08:00
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
#Boot Strap
|
|
|
|
fcho "Running: sudo ${QTOX_DIR_VER}/bootstrap-osx.sh"
|
|
|
|
cd $QTOX_DIR
|
|
|
|
sudo ./bootstrap-osx.sh
|
2016-03-23 01:52:38 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
dmgmake() {
|
|
|
|
fcho "------------------------------"
|
|
|
|
fcho "Starting DMG creation"
|
|
|
|
cd $DEPLOY_DIR
|
|
|
|
ln -s /Applications "./Install to Applications"
|
|
|
|
cp -r -f $QTOX_DIR/osx/background-DMG ./.background
|
|
|
|
cp -f $QTOX_DIR/osx/DS_Store-DMG ./.DS_Store
|
|
|
|
cp -f $QTOX_DIR/LICENSE ./LICENSE
|
|
|
|
cp -f $QTOX_DIR/README.md ./README.md
|
|
|
|
cd $QTOX_DIR
|
|
|
|
hdiutil create -volname qTox${SUBGIT} -srcfolder $DEPLOY_DIR -format UDZO qTox${SUBGIT}.dmg
|
2016-05-29 07:21:53 +08:00
|
|
|
}
|
|
|
|
|
2016-09-27 10:15:52 +08:00
|
|
|
helpme() {
|
|
|
|
echo "This script was created to help ease the process of compiling and creating a distributable qTox package for OSX systems."
|
|
|
|
echo "The available commands are:"
|
|
|
|
echo "-h | --help -- This help text."
|
2016-11-06 09:19:19 +08:00
|
|
|
echo "-i | --install -- A slightly automated process for getting an OSX machine ready to build Toxcore and qTox."
|
2016-09-27 10:15:52 +08:00
|
|
|
echo "-u | --update -- Check for updates and build Toxcore from git & update qTox from git."
|
|
|
|
echo "-b | --build -- Builds qTox in: ${BUILD_DIR}"
|
|
|
|
echo "-d | --deploy -- Makes a distributable qTox.app file in: ${DEPLOY_DIR}"
|
|
|
|
echo "-bs | --bootstrap -- Performs bootstrap steps."
|
|
|
|
fcho "Issues with Toxcore or qTox should be reported to their respective repos: https://github.com/irungentoo/toxcore | https://github.com/qTox/qTox"
|
|
|
|
exit 0
|
2016-05-29 07:21:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case "$1" in
|
2016-09-27 10:15:52 +08:00
|
|
|
-h | --help)
|
|
|
|
helpme
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-i | --install)
|
|
|
|
install
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-u | --update)
|
|
|
|
update
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-b | --build)
|
|
|
|
build
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-d | --deploy)
|
|
|
|
deploy
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-bs | --bootstrap)
|
|
|
|
bootstrap
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
-dmg)
|
|
|
|
dmgmake
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
2016-05-29 07:21:53 +08:00
|
|
|
esac
|
2016-01-26 19:52:15 +08:00
|
|
|
|
2016-02-01 00:25:38 +08:00
|
|
|
fcho "Oh dear! You seemed to of started this script improperly! Use -h to get available commands and information!"
|
|
|
|
echo " "
|
|
|
|
say -v Kathy -r 255 "Oh dear! You seemed to of started this script improperly! Use -h to get available commands and information!"
|
2016-01-26 15:46:35 +08:00
|
|
|
exit 0
|