mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
24 lines
448 B
Bash
Executable file
24 lines
448 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
version=$1
|
|
jar=$2
|
|
mainClass=$3
|
|
|
|
$JAVA_HOME/bin/javapackager \
|
|
-deploy \
|
|
-BappVersion=$version \
|
|
-Bmac.CFBundleIdentifier=bitsquare \
|
|
-Bmac.CFBundleName=Bitsquare \
|
|
-Bruntime="$JAVA_HOME/../../" \
|
|
-native dmg \
|
|
-name Bitsquare \
|
|
-title Bitsquare \
|
|
-vendor Bitsquare \
|
|
-outdir build \
|
|
-srcfiles $jar \
|
|
-appclass $mainClass \
|
|
-outfile Bitsquare
|
|
|
|
#-Bicon=client/icons/mac.icns \
|