Skip to content
Snippets Groups Projects
Commit d9c94655 authored by akiraohgaki's avatar akiraohgaki Committed by GitHub
Browse files

Merge pull request #13 from opendesktop/develop

Develop
parents 3240f562 9124c804
No related branches found
No related tags found
No related merge requests found
message("Please execute scripts/import.sh for build dependencies")
ios|android|!isEmpty(APP_MOBILE) { ios|android|!isEmpty(APP_MOBILE) {
DEFINES += APP_MOBILE DEFINES += APP_MOBILE
} else { } else {
......
#!/bin/sh #!/bin/sh
PKGNAME='ocs-manager'
PKGVER='0.0.0'
PKGREL='1'
curl -L -o linuxdeployqt "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
chmod 755 linuxdeployqt
./linuxdeployqt --appimage-extract
sh scripts/import.sh sh scripts/import.sh
qmake PREFIX="/usr" qmake PREFIX="/usr"
make make
make INSTALL_ROOT="ocs-manager.AppDir" install make INSTALL_ROOT="${PKGNAME}.AppDir" install
curl -L -o linuxdeployqt.AppImage "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" ./squashfs-root/AppRun ${PKGNAME}.AppDir/usr/share/applications/${PKGNAME}.desktop -bundle-non-qt-libs -no-translations
chmod 755 linuxdeployqt.AppImage ./squashfs-root/AppRun ${PKGNAME}.AppDir/usr/share/applications/${PKGNAME}.desktop -appimage
./linuxdeployqt.AppImage --appimage-extract
./squashfs-root/AppRun ocs-manager.AppDir/usr/share/applications/ocs-manager.desktop -bundle-non-qt-libs -no-translations mv *.AppImage ${PKGNAME}-${PKGVER}-${PKGREL}-x86_64.AppImage
./squashfs-root/AppRun ocs-manager.AppDir/usr/share/applications/ocs-manager.desktop -appimage
#!/bin/bash #!/bin/bash
################################################################################
# This is wrapper script for build.sh use from inside docker container
################################################################################
PKGNAME='ocs-manager' PKGNAME='ocs-manager'
PKGUSER='pkgbuilder' PKGUSER='pkgbuilder'
......
#!/bin/bash #!/bin/bash
################################################################################
# This is utility script to build distribution packages
################################################################################
PKGNAME='ocs-manager' PKGNAME='ocs-manager'
BUILDTYPE='' BUILDTYPE=''
......
#!/bin/bash #!/bin/bash
################################################################################
# This is utility script to import build dependencies
################################################################################
PROJDIR="$(cd "$(dirname "${0}")/../" && pwd)" PROJDIR="$(cd "$(dirname "${0}")/../" && pwd)"
if [ ! -d "${PROJDIR}/lib/qtlib" ]; then if [ ! -d "${PROJDIR}/lib/qtlib" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment