mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-19 02:08:00 +00:00
11 lines
334 B
Bash
11 lines
334 B
Bash
|
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/
|