mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-18 06:45:56 -04:00
25 lines
448 B
Bash
Executable File
25 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 \
|