mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-26 11:45:08 +00:00
make_pkg: allow output to an environment-controlled path
This commit is contained in:
parent
6d6f67ee67
commit
d7a4838a54
1 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Script to produce an OS X installer .pkg and .app(.zip)
|
||||||
|
|
||||||
VERSION=`git describe --always --dirty 2>/dev/null`
|
VERSION=`git describe --always --dirty 2>/dev/null`
|
||||||
if test -z "$VERSION" ; then
|
if test -z "$VERSION" ; then
|
||||||
echo "Could not get version from git"
|
echo "Could not get version from git"
|
||||||
|
@ -21,17 +23,19 @@ set -e
|
||||||
|
|
||||||
PKGDIR=`mktemp -d`
|
PKGDIR=`mktemp -d`
|
||||||
|
|
||||||
|
OUTPUT_PATH=${FISH_ARTEFACT_PATH:-~/fish_built}
|
||||||
|
|
||||||
mkdir -p $PKGDIR/root $PKGDIR/intermediates $PKGDIR/dst
|
mkdir -p $PKGDIR/root $PKGDIR/intermediates $PKGDIR/dst
|
||||||
xcodebuild install -scheme install_tree -configuration Release DSTROOT=$PKGDIR/root/
|
xcodebuild install -scheme install_tree -configuration Release DSTROOT=$PKGDIR/root/
|
||||||
pkgbuild --scripts build_tools/osx_package_scripts --root $PKGDIR/root/ --identifier 'com.ridiculousfish.fish-shell-pkg' --version "$VERSION" $PKGDIR/intermediates/fish.pkg
|
pkgbuild --scripts build_tools/osx_package_scripts --root $PKGDIR/root/ --identifier 'com.ridiculousfish.fish-shell-pkg' --version "$VERSION" $PKGDIR/intermediates/fish.pkg
|
||||||
|
|
||||||
productbuild --package-path $PKGDIR/intermediates --distribution build_tools/osx_distribution.xml --resources build_tools/osx_package_resources/ ~/fish_built/fish-$VERSION.pkg
|
productbuild --package-path $PKGDIR/intermediates --distribution build_tools/osx_distribution.xml --resources build_tools/osx_package_resources/ $OUTPUT_PATH/fish-$VERSION.pkg
|
||||||
|
|
||||||
|
|
||||||
# Make the app
|
# Make the app
|
||||||
xcodebuild -scheme fish.app -configuration Release DSTROOT=/tmp/fish_app/ SYMROOT=DerivedData/fish/Build/Products
|
xcodebuild -scheme fish.app -configuration Release DSTROOT=/tmp/fish_app/ SYMROOT=DerivedData/fish/Build/Products
|
||||||
|
|
||||||
cd DerivedData/fish/Build/Products/Release/
|
cd DerivedData/fish/Build/Products/Release/
|
||||||
zip -r ~/fish_built/fish-$VERSION.app.zip fish.app
|
zip -r $OUTPUT_PATH/fish-$VERSION.app.zip fish.app
|
||||||
|
|
||||||
rm -r $PKGDIR
|
rm -r $PKGDIR
|
||||||
|
|
Loading…
Reference in a new issue