Compare commits

...

2 Commits

Author SHA1 Message Date
Tomas Groth 749b46b71a Merge branch 'flatpak' into 'master'
Draft: Support for flatpak packaging

See merge request openlp/packaging!26
2024-02-19 16:19:32 +00:00
Tomas Groth 895a277d8d Make openlp actually start and add desktop file and icon 2024-02-19 17:17:21 +01:00
3 changed files with 16 additions and 4 deletions

10
flatpak/build.sh Normal file → Executable file
View File

@ -3,9 +3,17 @@
# build PyMuPdf dependency file
PYMUPDF_VER=1.23.22
PY_TARGET=311
req2flatpak --requirements pymupdf==${PYMUPDF_VER} pymupdfb==${PYMUPDF_VER} --target-platforms ${PY_TARGET}-x86_64 ${PY_TARGET}-aarch64 --outfile python3-pymupdf.yaml
# first get the req2flatpak tool if not already present. Alternatively get req2flatpak from https://pypi.org/project/req2flatpak/
if [ ! -f "req2flatpak.py" ]; then
curl -O https://raw.githubusercontent.com/johannesjh/req2flatpak/main/req2flatpak.py
fi
python3 req2flatpak.py --requirements pymupdf==${PYMUPDF_VER} pymupdfb==${PYMUPDF_VER} --target-platforms ${PY_TARGET}-x86_64 ${PY_TARGET}-aarch64 --outfile python3-pymupdf.yaml
# build the openlp dependency file - remember to update requirements.txt if needed. Certain devel packages might be needed.
# first get the flatpak-pip-generator tool if not already present
if [ ! -f "flatpak-pip-generator" ]; then
curl -O https://raw.githubusercontent.com/flatpak/flatpak-builder-tools/master/pip/flatpak-pip-generator
fi
python flatpak-pip-generator --requirements-file requirements.txt
# Finally do the build

View File

@ -4,6 +4,7 @@ runtime-version: '5.15-23.08'
sdk: org.kde.Sdk
base: com.riverbankcomputing.PyQt.BaseApp
base-version: '5.15-23.08'
command: 'openlp'
cleanup-commands:
- /app/cleanup-BaseApp.sh
modules:
@ -23,7 +24,10 @@ modules:
buildsystem: simple
build-commands:
- pip install --no-deps --no-build-isolation --prefix=$FLATPAK_DEST .
- mkdir -p /app/share/applications && cp resources/openlp.desktop /app/share/applications/org.openlp.OpenLP.desktop && sed -ie s/Icon=openlp/Icon=org.openlp.OpenLP/ /app/share/applications/org.openlp.OpenLP.desktop
- mkdir -p /app/share/icons/hicolor/256x256/apps/ && cp resources/images/openlp-logo-256x256.png /app/share/icons/hicolor/256x256/apps/org.openlp.OpenLP.png
- mkdir -p /app/share/icons/hicolor/scalable/apps/ && cp resources/images/openlp-logo.svg /app/share/icons/hicolor/scalable/apps/org.openlp.OpenLP.svg
sources:
- type: archive
url: https://gitlab.com/openlp/openlp/-/archive/3.1.0rc4/openlp-3.1.0rc4.tar.gz
sha256: 63cc3f49944b8e5d5e0576105813938dee87355cb672318acb6c78df2e33522d
url: https://gitlab.com/openlp/openlp/-/archive/e5e8bc4164513ff4858b125c5efc2c157d758ea5/openlp-e5e8bc4164513ff4858b125c5efc2c157d758ea5.tar.gz
sha256: 5de48fb834cd831216ceb97f43846517cf427a85254236057ba20127288c2284

View File

@ -20,7 +20,7 @@ requests
SQLAlchemy
waitress
websockets
PyMuPDF
#PyMuPDF
QDarkStyle
#PyMySQL
python-vlc