File: build.sh

package info (click to toggle)
falkon 25.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,344 kB
  • sloc: cpp: 66,939; javascript: 21,781; sh: 578; xml: 564; python: 496; sql: 75; makefile: 26
file content (26 lines) | stat: -rwxr-xr-x 501 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash

FALKON_URL=$1
RUNTIME_URL="https://github.com/AppImage/AppImageKit/releases/download/continuous/runtime-x86_64"

if [ -z "$FALKON_URL" ]; then
    echo "No url specified!"
    exit 1
fi

source /root/env.sh
source /opt/rh/devtoolset-4/enable

cd /root

wget $RUNTIME_URL -O runtime

wget $FALKON_URL -O falkon.tar.xz
tar xf falkon.tar.xz
cd falkon-*

/root/build-appimage.sh \
    --sourcedir=`pwd` \
    --outdir=/out \
    --runtime=/root/runtime \
    --qmake=$QTDIR/bin/qmake