2013-04-14 06:09:40 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
VERSION=`sed -E -n 's/^.*PACKAGE_VERSION "([0-9.]+)"/\1/p' osx/config.h`
|
|
|
|
if test -z "$VERSION" ; then
|
|
|
|
echo "Could not get version from osx/config.h"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Version is $VERSION"
|
|
|
|
|
|
|
|
set -x
|
2012-05-10 09:11:28 +00:00
|
|
|
|
2012-05-30 07:27:50 +00:00
|
|
|
make distclean
|
2013-04-13 08:59:07 +00:00
|
|
|
rm -Rf /tmp/fish_pkg
|
2012-05-30 07:27:50 +00:00
|
|
|
|
2013-04-14 06:09:40 +00:00
|
|
|
#Exit on error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
mkdir -p /tmp/fish_pkg/root /tmp/fish_pkg/intermediates /tmp/fish_pkg/dst
|
2013-04-13 08:59:07 +00:00
|
|
|
xcodebuild install -scheme install_tree -configuration Release DSTROOT=/tmp/fish_pkg/root/
|
2013-04-14 06:09:40 +00:00
|
|
|
pkgbuild --scripts build_tools/osx_package_scripts --root /tmp/fish_pkg/root/ --identifier 'com.ridiculousfish.fish-shell-pkg' --version "$VERSION" /tmp/fish_pkg/intermediates/fish.pkg
|
2012-05-30 07:27:50 +00:00
|
|
|
|
2013-04-13 08:59:07 +00:00
|
|
|
productbuild --package-path /tmp/fish_pkg/intermediates --distribution build_tools/osx_distribution.xml --resources build_tools/osx_package_resources/ ~/fish_built/fish.pkg
|
2013-10-06 00:06:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Make the app
|
|
|
|
xcodebuild -scheme fish.app -configuration Release DSTROOT=/tmp/fish_app/
|
|
|
|
rm -f ~/fish_built/fish.app.zip
|
|
|
|
cd DerivedData/fish/Build/Products/Release/
|
|
|
|
zip -r ~/fish_built/fish.app.zip fish.app
|