mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-17 05:05:41 +00:00
21 lines
557 B
Bash
Executable File
21 lines
557 B
Bash
Executable File
DEXTRAS=gsplus-osx/
|
|
DDIR=$DEXTRAS/GSplus.app
|
|
ADIR=assets
|
|
mkdir -p $DEXTRAS/license
|
|
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/README.txt $DEXTRAS
|
|
cp LICENSE.txt $DEXTRAS/license
|
|
cp COPYRIGHT.txt $DEXTRAS/license
|
|
|
|
# packaging now in DMG script
|