2018-05-06 19:52:49 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#
|
|
|
|
# Copyright © 2018 by The qTox Project Contributors
|
|
|
|
#
|
|
|
|
# This script should be run from the root of the repository
|
|
|
|
|
|
|
|
if [ ! -f ./flatpak/build-flatpak.sh ]; then
|
|
|
|
echo ""
|
|
|
|
echo "You are attempting to run the build-flatpak.sh from a wrong directory."
|
|
|
|
echo "If you wish to run this script, you'll have to have"
|
|
|
|
echo "the repository root directory as the working directory."
|
|
|
|
echo ""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p ./output
|
|
|
|
|
|
|
|
docker run --rm --privileged \
|
|
|
|
-v $PWD:/qtox \
|
|
|
|
-v $PWD/output:/output \
|
|
|
|
debian:stretch-slim \
|
|
|
|
/bin/bash -c "/qtox/flatpak/build.sh"
|
2018-07-04 07:00:04 +08:00
|
|
|
|
|
|
|
# use the version number in the name when building a tag on Travis CI
|
|
|
|
if [ -n "$TRAVIS_TAG" ]
|
|
|
|
then
|
|
|
|
mv ./output/*.flatpak ./output/qTox-"$TRAVIS_TAG".flatpak
|
|
|
|
fi
|