2022-09-06 18:42:01 -04:00
|
|
|
#! /usr/bin/env sh
|
|
|
|
|
|
|
|
. ./config.sh
|
2022-09-06 19:25:43 -04:00
|
|
|
|
2022-12-23 00:37:28 +00:00
|
|
|
dnf -y update
|
|
|
|
dnf -y install temurin-19-jdk
|
2022-09-06 19:25:43 -04:00
|
|
|
|
2022-09-06 18:42:01 -04:00
|
|
|
jpackage --verbose \
|
|
|
|
--type rpm \
|
|
|
|
--linux-menu-group "Network;WebBrowser;P2P" \
|
|
|
|
--linux-app-category "Network" \
|
|
|
|
--linux-package-deps "firefox|chromium|brave|firefox-esr|librewolf|icecat" \
|
|
|
|
--linux-shortcut \
|
|
|
|
--license-file LICENSE.md \
|
|
|
|
--name i2pbrowser \
|
|
|
|
--app-version "$GITHUB_TAG" \
|
2022-10-23 21:04:15 -04:00
|
|
|
--icon src/icon.png \
|
2022-09-06 18:42:01 -04:00
|
|
|
--input src/build \
|
|
|
|
--main-jar i2pfirefox.jar \
|
|
|
|
--main-class net.i2p.i2pfirefox.I2PBrowser
|
2022-09-06 19:25:43 -04:00
|
|
|
ls *.rpm
|