mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-05 03:04:54 +00:00
21 lines
531 B
Bash
Executable File
21 lines
531 B
Bash
Executable File
DEXTRAS=gsplus-osx/
|
|
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/
|
|
|
|
# files to include in dmg
|
|
cp doc/gsplusmanual.pdf $DEXTRAS
|
|
cp doc/gsplusmanual.txt $DEXTRAS
|
|
cp doc/README.txt $DEXTRAS
|
|
cp COPYING.txt $DEXTRAS
|
|
|
|
#tar -cvzf gsplus-osx.tar.gz gsplus-osx/
|
|
|
|
# packaging now in DMG script
|