Add linux packaging instructions
This commit is contained in:
@ -27,6 +27,15 @@ jpackage seems to pull in the entire working directory unnecessarily. To avoid b
|
||||
> jpackage --input . --name "Numbers Station" --main-jar numbersstation-1.0-SNAPSHOT-shaded.jar --main-class name.nathanmcrae.numbersstation.MainRun --type exe --win-menu --win-per-user-install --win-shortcut --win-shortcut-prompt --win-upgrade-uuid 956c711b-01f1-46a2-9355-4a6b63ec1ec9 --icon "../icon.ico" --description "Tool to periodically upload encrypted messages to a website/blog"
|
||||
```
|
||||
|
||||
## Linux
|
||||
|
||||
``` sh
|
||||
> mkdir packaing
|
||||
> cp target/numbersstation-1.0-SNAPSHOT.jar packaging
|
||||
> cd packaging
|
||||
> jpackage --input . --name numbers-station --main-jar numbersstation-1.0-SNAPSHOT.jar --main-class name.nathanmcrae.numbersstation.MainRun --type deb --icon ../icon.ico --description "Tool to periodically upload encrypted messages to a website/blog"
|
||||
```
|
||||
|
||||
# TODO
|
||||
|
||||
- [ ] Undo/Redo in message editing
|
||||
|
Reference in New Issue
Block a user