Ticket #14576: josm-snap.diff

File josm-snap.diff, 1.1 KB (added by mvogt, 7 years ago)
  • data_nodist/launcher

     
     1#!/bin/sh
     2
     3java -jar $SNAP/josm-custom.jar
  • snapcraft.yaml

    Property changes on: data_nodist/launcher
    ___________________________________________________________________
    Added: svn:executable
    ## -0,0 +1 ##
    +*
    \ No newline at end of property
     
     1name: josm
     2version: 0.git
     3summary: An openstreetmap editor
     4description: Edit openstreetmap data
     5confinement: strict
     6grade: stable
     7
     8apps:
     9 josm:
     10   command: usr/bin/launcher
     11
     12parts:
     13    local:
     14        plugin: ant
     15        source: .
     16        install: |
     17            cp -a dist/josm-custom.jar $SNAPCRAFT_PART_INSTALL/
     18    launcher:
     19        plugin: dump
     20        source: ./data_nodist
     21        organize:
     22            launcher: usr/bin/launcher
     23        prime:
     24            - usr
     25
     26         
     27 No newline at end of file