RSS Git Download  Clone
Raw Blame History
app-id: com.patrikx3.onenote
runtime: org.freedesktop.Platform
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
base: org.electronjs.Electron2.BaseApp
base-version: '23.08'
sdk-extensions:
  - org.freedesktop.Sdk.Extension.node18
command: run.sh
separate-locales: false
finish-args:
  - --share=ipc
  - --socket=x11
  - --socket=pulseaudio
  - --share=network
#  - --device=dri
build-options:
  append-path: /usr/lib/sdk/node18/bin
  env:
    NPM_CONFIG_LOGLEVEL: info
modules:
  - name: onenote
    buildsystem: simple
    subdir: main
    build-options:
      env:
        XDG_CACHE_HOME: /run/build/onenote/flatpak-node/cache
        npm_config_cache: /run/build/onenote/flatpak-node/npm-cache
        npm_config_offline: 'true'
        #PUPPETEER_SKIP_DOWNLOAD: "true"
    build-commands:
      # Install npm dependencies
      #- npm install --offline
      - yarn install --offline 
      # Build the app; in this example the dist script
      # in package.json runs electron-builder
      - |
        . flatpak-node/electron-builder-arch-args.sh
        npm run dist -- $ELECTRON_BUILDER_ARCH_ARGS  --linux --dir
      # Bundle app and dependencies
      - cp -a dist/linux*unpacked /app/main
      # Install app wrapper
      - install -Dm755 -t /app/bin/ ./run.sh
      #- install -Dm444 logo.png ${FLATPAK_DEST}/share/icons/hicolor/512x512/apps/${FLATPAK_ID}.png
      #- install -Dm444 flatpak/br.com.eduk.desktop ${FLATPAK_DEST}/share/applications/${FLATPAK_ID}.desktop
      #- install -Dm444 flatpak/br.com.eduk.metainfo.xml ${FLATPAK_DEST}/share/metainfo/${FLATPAK_ID}.metainfo.xml
    sources:
      # Getting project
      # - type: dir
      #  path: ..
      #  dest: main
      #- type: git
      #  url: https://github.com/patrikx3/onenote.git
      #  tag: v2024.4.146
      #  dest: main
      - type: archive
        url: https://github.com/patrikx3/onenote/archive/refs/heads/master.tar.gz
        sha256: 2ee233711e8c6504ed068a02c89e820dbe7c4664df8d47c10a675eae9f880a25
        dest: main
      - generated-sources.json
      # Wrapper to launch the app
      - type: script
        dest-filename: run.sh
        commands:
          - zypak-wrapper.sh /app/main/onenote "$@"