Warning, file /network/falkon/linux/appimage/build.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/usr/bin/env bash
0002 
0003 FALKON_URL=$1
0004 RUNTIME_URL="https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-x86_64"
0005 
0006 if [ -z "$FALKON_URL" ]; then
0007     echo "No url specified!"
0008     exit 1
0009 fi
0010 
0011 source /root/env.sh
0012 source /opt/rh/devtoolset-4/enable
0013 
0014 cd /root
0015 
0016 wget $RUNTIME_URL -O runtime
0017 
0018 wget $FALKON_URL -O falkon.tar.xz
0019 tar xf falkon.tar.xz
0020 cd falkon-*
0021 
0022 /root/build-appimage.sh \
0023     --sourcedir=`pwd` \
0024     --outdir=/out \
0025     --runtime=/root/runtime \
0026     --qmake=$QTDIR/bin/qmake