1
0
Fork 0
VideoPlayer/scripts/makeappimage.sh

29 lines
1.1 KiB
Bash
Raw Normal View History

2018-10-14 20:49:13 +01:00
#!/bin/bash
2018-10-14 21:50:14 +01:00
set -ex
2018-10-14 20:49:13 +01:00
export PATH="/usr/lib/ccache:/usr/lib/ccache/bin:$PATH"
2018-10-14 21:26:48 +01:00
export QML_SOURCES_PATHS=src/qml
2018-10-17 08:25:03 +01:00
export V=0 VERBOSE=0
2018-10-14 20:52:31 +01:00
cmake -DCMAKE_INSTALL_PREFIX=/usr .
2018-10-14 20:49:13 +01:00
make -j$(nproc)
2018-10-30 12:34:13 +00:00
make DESTDIR=appdir -j$(nproc) install ; find appdir/
2018-10-14 21:26:48 +01:00
wget -nc "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage"
2018-10-17 08:04:21 +01:00
wget -nc "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage"
2018-10-14 20:49:13 +01:00
chmod +x linux*
2018-10-16 09:05:04 +01:00
mkdir -p appdir/usr/lib
2018-10-21 17:08:59 +01:00
if [ "$ARCH" == "" ]; then
ARCH="x86_64"
fi
2018-11-08 09:31:51 +00:00
wget `curl -s https://api.github.com/repos/AppImage/AppImageUpdate/releases | grep browser_download_url | grep x86_64.AppImage | grep appimageupdatetool | grep -v zsync | cut -d'"' -f4` -O appdir/usr/bin/appimageupdatetool
2018-11-04 21:40:22 +00:00
chmod +x appdir/usr/bin/appimageupdatetool
2018-10-23 11:50:42 +01:00
2018-11-06 10:15:31 +00:00
wget https://yt-dl.org/downloads/latest/youtube-dl -O appdir/usr/bin/youtube-dl
chmod +x appdir/usr/bin/youtube-dl
2018-10-21 17:51:37 +01:00
export UPD_INFO="gh-releases-zsync|NamedKitten|KittehPlayer|continuous|KittehPlayer-$ARCH.AppImage.zsync"
2018-11-04 21:40:22 +00:00
time ./linuxdeploy-x86_64.AppImage --appdir appdir --plugin qt --output appimage -v 3