mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-24 06:34:02 +00:00
20 lines
524 B
Bash
Executable File
20 lines
524 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 config.txt $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
|
|
|
|
# packaging now in DMG script
|