mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
1ed1e188fd
This script likely is useless for anyone but me, but I like having it in the source tree in case others can benefit from seeing how the packages are built. This now is based on out-of-tree cmake builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
45 lines
1.8 KiB
Bash
Executable file
45 lines
1.8 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# this simply automates the steps to create a DMG we can ship
|
|
#
|
|
# for this to work you need to have a custom build of MacPorts / gtk / etc
|
|
# with prefix=/Applications/Subsurface.app/Contents/Resources
|
|
# yes, that's a major hack, but otherwise gettext cannot seem to find
|
|
# the gtk related .mo files and localization is only partial
|
|
#
|
|
# run this from the top subsurface directory
|
|
|
|
# install location of yourway-create-dmg
|
|
DMGCREATE=../yoursway-create-dmg/create-dmg
|
|
|
|
# same git version magic as in the Makefile
|
|
# for the naming of volume and dmg we don't need the "always 3 digits"
|
|
# darwin version - the 'regular' version that has 2 digits for releases
|
|
# is better
|
|
VERSION=$(cd ../subsurface; ./scripts/get-version linux)
|
|
|
|
|
|
# first build and install Subsurface and then clean up the staging area
|
|
rm -rf ./Subsurface.app
|
|
make -j8
|
|
make install
|
|
install_name_tool -change /Users/hohndel/src/marble/install/libssrfmarblewidget.0.19.2.dylib @executable_path/../Frameworks/libssrfmarblewidget.0.19.2.dylib Subsurface.app/Contents/MacOS/Subsurface
|
|
install_name_tool -change /Users/hohndel/src/libgit2/build/libgit2.22.dylib @executable_path/../Frameworks/libgit2.22.dylib Subsurface.app/Contents/MacOS/Subsurface
|
|
|
|
# copy things into staging so we can create a nice DMG
|
|
rm -rf ./staging
|
|
mkdir ./staging
|
|
cp -a ./Subsurface.app ./staging
|
|
|
|
sh ../subsurface/packaging/macosx/sign
|
|
|
|
if [ -f ./Subsurface-$VERSION.dmg ]; then
|
|
rm ./Subsurface-$VERSION.dmg.bak
|
|
mv ./Subsurface-$VERSION.dmg ./Subsurface-$VERSION.dmg.bak
|
|
fi
|
|
|
|
$DMGCREATE --background ../subsurface/packaging/macosx/DMG-Background.png \
|
|
--window-size 500 300 --icon-size 96 --volname Subsurface-$VERSION \
|
|
--app-drop-link 380 205 \
|
|
--volicon ../subsurface/packaging/macosx/Subsurface.icns \
|
|
--icon "Subsurface" 110 205 ./Subsurface-$VERSION.dmg ./staging
|