mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-16 14:09:57 +00:00
22 lines
593 B
Bash
Executable File
22 lines
593 B
Bash
Executable File
#!/bin/sh
|
|
git clone https://github.com/andreyvit/yoursway-create-dmg.git
|
|
cd yoursway-create-dmg
|
|
|
|
test -f GSplus-Install.dmg && rm GSplus-Install.dmg
|
|
./create-dmg \
|
|
--volname "GSplus" \
|
|
--volicon "../assets/gsp-dmg-icons.icns" \
|
|
--background "../assets/gsback.png" \
|
|
--window-pos 200 120 \
|
|
--window-size 710 600 \
|
|
--icon-size 64 \
|
|
--icon GSplus.app 250 210 \
|
|
--hide-extension GSplus.app \
|
|
--app-drop-link 440 210 \
|
|
--icon README.txt 225 350 \
|
|
--icon gsplusmanual.pdf 350 350 \
|
|
--icon license 470 350 \
|
|
GSplus-Install.dmg \
|
|
../gsplus-osx/
|
|
cp GSplus-Install.dmg ..
|