2022-09-05 17:50:04 -04:00
|
|
|
#! /usr/bin/env sh
|
|
|
|
|
2022-09-05 18:28:23 -04:00
|
|
|
. ./config.sh
|
2022-09-05 18:23:33 -04:00
|
|
|
jpackage --verbose \
|
|
|
|
--type deb \
|
2022-09-05 18:43:02 -04:00
|
|
|
--linux-deb-maintainer hankhill19580@gmail.com \
|
2022-09-05 21:08:11 -04:00
|
|
|
--linux-menu-group "Network;WebBrowser;P2P" \
|
|
|
|
--linux-app-category "Network" \
|
2022-09-05 18:43:02 -04:00
|
|
|
--linux-package-deps "firefox|chromium|brave|firefox-esr|librewolf|icecat" \
|
|
|
|
--linux-shortcut \
|
2022-09-05 21:08:11 -04:00
|
|
|
--license-file LICENSE.md \
|
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
|