mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
23 lines
399 B
Bash
Executable file
23 lines
399 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
version=$1
|
|
jar=$2
|
|
mainClass=$3
|
|
|
|
javapackager -deploy \
|
|
-BappVersion=$version \
|
|
-Bcategory=Finance \
|
|
-BlicenseType=GPLv3 \
|
|
-Bemail=info@bitsquare.io \
|
|
-native deb \
|
|
-name Bitsquare \
|
|
-title Bitsquare \
|
|
-vendor Bitsquare \
|
|
-outdir build \
|
|
-appclass $mainClass \
|
|
-srcfiles $jar \
|
|
-outfile Bitsquare
|
|
|
|
# -Bicon=client/icons/icon.png \
|