Merge pull request #569 from tinywrkb/flatpak_fix
Flatpak: Repackage deb release instead of building from source
This commit is contained in:
parent
53201f3646
commit
52b869bdd2
3 changed files with 52 additions and 19106 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,86 +1,67 @@
|
|||
app-id: org.cidercollective.cider
|
||||
branch: main
|
||||
runtime: org.freedesktop.Platform
|
||||
runtime-version: '21.08'
|
||||
sdk: org.freedesktop.Sdk
|
||||
# Use the Electron 2 BaseApp, which adds several common libraries we'll need.
|
||||
base: org.electronjs.Electron2.BaseApp
|
||||
base-version: '21.08'
|
||||
# Add the Node 10 SDK extension.
|
||||
sdk-extensions:
|
||||
- org.freedesktop.Sdk.Extension.node14
|
||||
# Electron doesn't use a traditional locale format so separate-locales is useless.
|
||||
separate-locales: false
|
||||
command: cider
|
||||
rename-desktop-file: cider.desktop
|
||||
rename-icon: cider
|
||||
finish-args:
|
||||
# These two lines add Xorg access for graphics.
|
||||
- '--share=ipc'
|
||||
- '--socket=x11'
|
||||
# Sound access.
|
||||
- '--socket=pulseaudio'
|
||||
# Network access.
|
||||
- '--share=network'
|
||||
# If you need to access the filesystem, also add:
|
||||
# - '--filesystem=home'
|
||||
- --device=dri
|
||||
- --filesystem=xdg-music
|
||||
- --own-name=org.mpris.MediaPlayer2.Cider
|
||||
- --share=ipc
|
||||
- --share=network
|
||||
- --socket=pulseaudio
|
||||
# needs electron v11 (chromium v87) or newer with ozone enabled
|
||||
# https://github.com/electron/electron/issues/10915
|
||||
# - --socket=wayland
|
||||
- --socket=x11
|
||||
- --system-talk-name=org.freedesktop.UPower
|
||||
- --talk-name=com.canonical.AppMenu.Registrar
|
||||
- --talk-name=com.canonical.dbusmenu
|
||||
- --talk-name=org.freedesktop.Notifications
|
||||
- --talk-name=org.kde.StatusNotifierWatcher
|
||||
modules:
|
||||
# With electron-webpack and electron-builder we don't install Node to /app/node,
|
||||
# because electron-builder will bundle everything for us in one piece.
|
||||
# Instead we jump straight to the quick start module.
|
||||
|
||||
# However, since this quick start uses yarn, we do have to install that.
|
||||
- name: yarn
|
||||
buildsystem: simple
|
||||
build-commands:
|
||||
- 'cp -a * /app'
|
||||
# Only used for building, so clean it up afterwards.
|
||||
cleanup:
|
||||
- '*'
|
||||
sources:
|
||||
- type: archive
|
||||
url: https://github.com/yarnpkg/yarn/releases/download/v1.22.17/yarn-v1.22.17.tar.gz
|
||||
sha256: 267982c61119a055ba2b23d9cf90b02d3d16c202c03cb0c3a53b9633eae37249
|
||||
|
||||
- name: cider
|
||||
buildsystem: simple
|
||||
build-options:
|
||||
# Add the node bin directory & yarn directory.
|
||||
append-path: '/usr/lib/sdk/node14/bin:/app/yarn/bin'
|
||||
env:
|
||||
# Set the Electron cache directory.
|
||||
# (The directory format is: /run/build/MODULE_NAME/flatpak-node/electron-cache)
|
||||
ELECTRON_CACHE: '/run/build/cider/flatpak-node/electron-cache'
|
||||
XDG_CACHE_HOME: /run/build/cider/flatpak-node/cache
|
||||
# Sets the directory where Node is located so way npm won't download the headers.
|
||||
npm_config_nodedir: 'flatpak-node/node-gyp/electron-current'
|
||||
build-commands:
|
||||
# Have Yarn use the offline mirror.
|
||||
- 'HOME=$PWD yarn config --offline set yarn-offline-mirror $FLATPAK_BUILDER_BUILDDIR/flatpak-node/yarn-mirror'
|
||||
# Download the packages
|
||||
- 'cp cider-yarn.lock yarn.lock'
|
||||
- 'yarn install --offline'
|
||||
# If you were using npm with electron-webpack/electron-builder, then the above two commands
|
||||
# would look more like the npm commands in the vanilla-quick-start manifest, just without
|
||||
# the --prefix.
|
||||
|
||||
# Run electron-builder, passing the architecture arguments to it.
|
||||
# Note that the -- is important; without that, the argument will be passed to
|
||||
# yarn instead of electron-builder.
|
||||
- '. flatpak-node/electron-builder-arch-args.sh; yarn run --offline electron-builder build --linux dir -- $ELECTRON_BUILDER_ARCH_ARGS'
|
||||
# Copy the resulting, unpacked directory to /app.
|
||||
# (A glob is used because the directory name may contain the current arch.)
|
||||
- 'cp -r dist/linux*unpacked /app/cider'
|
||||
# If you passed --electron-non-patented-ffmpeg, you could install it like this:
|
||||
# - 'install -Dm 755 flatpak-node/libffmpeg.so -t /app/electron-webpack-quick-start'
|
||||
# Install the wrapper script to start it.
|
||||
- 'install -Dm 755 cider.sh /app/bin/cider'
|
||||
- install -dm755 ${FLATPAK_DEST}/cider
|
||||
- |
|
||||
bsdtar -Oxf cider.deb 'data.tar*' |
|
||||
bsdtar -xf - \
|
||||
-C ${FLATPAK_DEST}/cider \
|
||||
--strip-components=3 \
|
||||
./opt/Cider
|
||||
- |
|
||||
bsdtar -Oxf cider.deb 'data.tar*' |
|
||||
bsdtar -xf - \
|
||||
-C ${FLATPAK_DEST} \
|
||||
--strip-components=2 \
|
||||
--exclude=./usr/share/doc \
|
||||
./usr/share
|
||||
- desktop-file-edit --set-key=Exec --set-value=cider ${FLATPAK_DEST}/share/applications/cider.desktop
|
||||
- install -Dm755 stub_sandbox ${FLATPAK_DEST}/cider/chrome-sandbox
|
||||
- install -Dm755 cider -t ${FLATPAK_DEST}/bin/
|
||||
sources:
|
||||
- type: git
|
||||
url: https://github.com/ciderapp/cider
|
||||
branch: develop
|
||||
# Add the flatpak-node-generator generated sources.
|
||||
- generated-sources.json
|
||||
# Our runner script.
|
||||
- type: file
|
||||
dest-filename: cider.deb
|
||||
url: https://1308-429851205-gh.circle-artifacts.com/0/~/Cider/dist/artifacts/cider_1.3.1308_amd64.deb
|
||||
sha256: 342abde96bac9668e7238860ba435171edd72077ed9f4b385a3546c4d8f96995
|
||||
x-checker-data:
|
||||
type: html
|
||||
url: https://circleci.com/api/v1.1/project/gh/ciderapp/Cider/latest/artifacts?branch=main&filter=successful
|
||||
pattern: (https://.*circle-artifacts.com/.+/cider_([\d\.]+)_amd64.deb)
|
||||
- type: script
|
||||
dest-filename: cider.sh
|
||||
dest-filename: cider
|
||||
commands:
|
||||
- '/app/cider/cider'
|
||||
# share chromium singleton between multiple session, needed for flatpak<1.11.1
|
||||
- export TMPDIR=$XDG_RUNTIME_DIR/app/$FLATPAK_ID
|
||||
- exec zypak-wrapper /app/cider/cider "$@"
|
||||
- type: script
|
||||
dest-filename: stub_sandbox
|
||||
commands:
|
||||
- |
|
||||
echo Stub sandbox ignoring command: $@
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue