From b4df31a31ae143c92a6e625b2d2d22e2164275bc Mon Sep 17 00:00:00 2001 From: Nathan Christopher McRae Date: Sun, 6 Jul 2025 20:47:47 -0700 Subject: [PATCH] Add linux packaging instructions --- readme.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/readme.md b/readme.md index 683b693..1fb33be 100644 --- a/readme.md +++ b/readme.md @@ -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