2016-08-11 03:34:27 +08:00
|
|
|
#!/bin/bash
|
2019-06-24 22:01:18 +08:00
|
|
|
|
|
|
|
# Copyright © 2016-2019 by The qTox Project Contributors
|
2016-08-11 03:34:27 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
2016-08-11 17:51:53 +08:00
|
|
|
# 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-08-11 03:34:27 +08:00
|
|
|
|
|
|
|
# Fail out on error
|
2018-10-22 04:55:19 +08:00
|
|
|
set -eu -o pipefail
|
2016-08-11 03:34:27 +08:00
|
|
|
|
2019-01-18 22:00:35 +08:00
|
|
|
readonly BIN_NAME="qTox.dmg"
|
|
|
|
|
2017-01-15 18:52:23 +08:00
|
|
|
# accelerate builds with ccache
|
|
|
|
install_ccache() {
|
2019-01-13 11:21:16 +08:00
|
|
|
# manually update even though `install` will already update, due to bug:
|
|
|
|
# Please don't worry, you likely hit a bug auto-updating from an old version.
|
|
|
|
# Rerun your command, everything is up-to-date and fine now.
|
|
|
|
echo "Updating brew..."
|
|
|
|
brew update
|
|
|
|
echo "Installing ccache..."
|
2017-01-15 18:52:23 +08:00
|
|
|
brew install ccache
|
2019-03-18 01:09:12 +08:00
|
|
|
brew --cache
|
2017-01-15 18:52:23 +08:00
|
|
|
}
|
|
|
|
|
2016-08-11 03:34:27 +08:00
|
|
|
# Build OSX
|
2016-09-27 19:34:05 +08:00
|
|
|
build() {
|
|
|
|
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -i
|
|
|
|
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -b
|
|
|
|
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -d
|
|
|
|
bash ./osx/qTox-Mac-Deployer-ULTIMATE.sh -dmg
|
|
|
|
}
|
|
|
|
|
|
|
|
# check if binary was built
|
|
|
|
check() {
|
|
|
|
if [[ ! -s "$BIN_NAME" ]]
|
|
|
|
then
|
|
|
|
echo "There's no $BIN_NAME !"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-01-18 22:00:35 +08:00
|
|
|
make_hash() {
|
|
|
|
shasum -a 256 "$BIN_NAME" > "$BIN_NAME".sha256
|
|
|
|
}
|
|
|
|
|
2016-09-27 19:34:05 +08:00
|
|
|
main() {
|
2017-01-15 18:52:23 +08:00
|
|
|
install_ccache
|
2016-09-27 19:34:05 +08:00
|
|
|
build
|
|
|
|
check
|
2019-01-18 22:00:35 +08:00
|
|
|
make_hash
|
2016-09-27 19:34:05 +08:00
|
|
|
}
|
|
|
|
main
|