Skip to content
Snippets Groups Projects
appimage.sh 631 B
Newer Older
akiraohgaki's avatar
akiraohgaki committed
#!/bin/sh

PKGNAME='ocs-url'

sh scripts/import.sh
qmake PREFIX="/usr"
make
make INSTALL_ROOT="${PKGNAME}.AppDir" install

akiraohgaki's avatar
akiraohgaki committed
curl -L -o linuxdeployqt "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
chmod 755 linuxdeployqt
./linuxdeployqt --appimage-extract
akiraohgaki's avatar
akiraohgaki committed

./squashfs-root/AppRun ${PKGNAME}.AppDir/usr/share/applications/${PKGNAME}.desktop -bundle-non-qt-libs -no-translations -qmldir="app/qml"
./squashfs-root/AppRun ${PKGNAME}.AppDir/usr/share/applications/${PKGNAME}.desktop -appimage
akiraohgaki's avatar
akiraohgaki committed

akiraohgaki's avatar
akiraohgaki committed
mv *.AppImage rename.AppImage
mv rename.AppImage ${PKGNAME}-x86_64.AppImage