2022-09-05 18:23:33 -04:00
|
|
|
#! /usr/bin/env sh
|
2022-09-05 18:28:23 -04:00
|
|
|
. ./config.sh
|
2024-02-20 18:55:12 -05:00
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin
|
2022-09-05 18:23:33 -04:00
|
|
|
jpackage \
|
|
|
|
--verbose \
|
|
|
|
--type msi \
|
2022-09-05 18:43:02 -04:00
|
|
|
--win-dir-chooser \
|
|
|
|
--win-help-url "https://geti2p.net" \
|
|
|
|
--win-menu \
|
|
|
|
--win-menu-group "I2P Browser Configurer" \
|
|
|
|
--win-shortcut \
|
|
|
|
--win-shortcut-prompt \
|
2022-09-05 21:32:31 -04:00
|
|
|
--win-per-user-install \
|
2022-09-05 21:08:11 -04:00
|
|
|
--license-file LICENSE.md \
|
2022-10-23 21:04:15 -04:00
|
|
|
--icon src/icon.png \
|
2022-09-05 18:23:33 -04:00
|
|
|
--name i2pbrowser \
|
|
|
|
--app-version "$GITHUB_TAG" \
|
|
|
|
--input src/build \
|
|
|
|
--main-jar i2pfirefox.jar \
|
|
|
|
--main-class net.i2p.i2pfirefox.I2PBrowser
|