Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.26 KB | None | 0 0
  1.  
  2.  
  3. name: heidisql version: latest version-script: cat $SNAPCRAFT_STAGE/version summary: heidisql description: |         HeidiSQL confinement: devmode grade: stable architectures:  - build-on: amd64   - build-on: i386 base: core18 plugs:  wine-runtime:    interface: content     target: $SNAP/wine-runtime     default-provider: wine-platform-runtime   wine-3-stable:    interface: content     target: $SNAP/wine-platform     default-provider: wine-platform-3-stable   icon-themes:      interface: content       target: $SNAP/data-dir/icons       default-provider: gtk-common-themes apps:  heidisql:    command: heidisql     desktop: usr/share/applications/heidisql.desktop     plugs: [ wayland, x11, opengl, home, desktop, desktop-legacy, network, hardware-observe, process-control, cups-control, removable-media, icon-themes, wine-runtime, wine-3-stable ] parts:  heidisql:    plugin: nil     source: ./snap/local/src     override-build: |       snapcraftctl build       set -ex       ver=$(wget https://www.heidisql.com -q -S -O - 2>&1 | grep 'Version</t' | cut -c19-24 | sed 's| -||' | sed 's/ //g')       echo $ver > $SNAPCRAFT_STAGE/version       ./dl_hs     stage:      - bin       - usr       - wine-platform       - wine-runtime       - winedata     build-packages: [wget]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement