mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-02 06:36:22 -04:00
rename files, fix wrong path
This commit is contained in:
parent
395b03f42f
commit
f8e68d9447
2 changed files with 1 additions and 1 deletions
39
package/linux/create_64bit_app.sh
Normal file
39
package/linux/create_64bit_app.sh
Normal file
|
@ -0,0 +1,39 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd ../../
|
||||
mkdir -p gui/deploy
|
||||
|
||||
set -e
|
||||
|
||||
# Edit versions
|
||||
fullVersion=0.4.3
|
||||
jarFile="/home/mk/Desktop/sf_vm_shared_ubuntu/Bitsquare-$fullVersion.jar"
|
||||
|
||||
# Note: fakeroot needs to be installed on linux
|
||||
$JAVA_HOME/bin/javapackager \
|
||||
-deploy \
|
||||
-BappVersion=$fullVersion \
|
||||
-Bcategory=Office,Finance \
|
||||
-Bemail=team@bitsquare.io \
|
||||
-BlicenseType=GPLv3 \
|
||||
-BlicenseFile=LICENSE \
|
||||
-Bicon=package/linux/icon.png \
|
||||
-native deb \
|
||||
-name Bitsquare \
|
||||
-title Bitsquare \
|
||||
-vendor Bitsquare \
|
||||
-outdir gui/deploy \
|
||||
-srcfiles $jarFile \
|
||||
-srcfiles package/linux/LICENSE \
|
||||
-appclass io.bitsquare.app.BitsquareAppMain \
|
||||
-outfile Bitsquare
|
||||
|
||||
rm gui/deploy/Bitsquare.html
|
||||
rm gui/deploy/Bitsquare.jnlp
|
||||
rm gui/deploy/LICENSE
|
||||
mv "gui/deploy/bundles/bitsquare-$fullVersion.deb" "gui/deploy/Bitsquare-$fullVersion.deb"
|
||||
rmdir gui/deploy/bundles
|
||||
cp "gui/deploy/Bitsquare-$fullVersion.deb" "/home/mk/Desktop/sf_vm_shared_ubuntu/Bitsquare-64bit-$fullVersion.deb"
|
||||
cp "gui/deploy/Bitsquare-64bit-$fullVersion.deb" "/home/mk/Desktop/Bitsquare-64bit-$fullVersion.deb"
|
||||
|
||||
cd package/linux
|
Loading…
Add table
Add a link
Reference in a new issue