22 lines
574 B
Bash
22 lines
574 B
Bash
#!/usr/bin/env bash
|
|
|
|
git clone --depth 1 https://github.com/olive-editor/olive.git
|
|
cd olive
|
|
mkdir build
|
|
cd build
|
|
cmake .. -G "Ninja"
|
|
cmake --build .
|
|
|
|
cmake --install app --prefix appdir/usr
|
|
|
|
/usr/local/linuxdeployqt-x86_64.AppImage \
|
|
appdir/usr/share/applications/org.olivevideoeditor.Olive.desktop \
|
|
-appimage \
|
|
-bundle-non-qt-libs \
|
|
-executable=appdir/usr/bin/crashpad_handler \
|
|
-executable=appdir/usr/bin/minidump_stackwalk \
|
|
-executable=appdir/usr/bin/olive-crashhandler \
|
|
--appimage-extract-and-run
|
|
|
|
./Olive*.AppImage --appimage-extract-and-run --version
|