mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-15 22:13:25 +00:00
11 lines
334 B
Bash
Executable File
11 lines
334 B
Bash
Executable File
DDIR=gsplus-osx/GSplus.app
|
|
ADIR=assets
|
|
mkdir -p $DDIR/Contents/MacOS
|
|
mkdir -p $DDIR/Contents/Resources
|
|
|
|
cp gsplus $DDIR/Contents/MacOS
|
|
cp $ADIR/Info.plist $DDIR/Contents
|
|
cp $ADIR/gsp-icons.icns $DDIR/Contents/Resources
|
|
dylibbundler -od -b -x $DDIR/Contents/MacOS/gsplus -d $DDIR/Contents/libs/
|
|
tar -cvzf gsplus-osx.tar.gz gsplus-osx/
|