diff options
Diffstat (limited to 'Utilities/Release/cmake_release.sh')
-rwxr-xr-x | Utilities/Release/cmake_release.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Utilities/Release/cmake_release.sh b/Utilities/Release/cmake_release.sh index 609e943..9f80ca9 100755 --- a/Utilities/Release/cmake_release.sh +++ b/Utilities/Release/cmake_release.sh @@ -491,6 +491,29 @@ cygwin_package() ) >Logs/cygwin_package.log 2>&1 || error_log Logs/cygwin_package.log } +#----------------------------------------------------------------------------- +osx_install() +{ + [ -z "${DONE_osx_install}" ] || return 0 ; DONE_osx_install="yes" + config || return 1 + [ -f "cmake-${VERSION}-${PLATFORM}/Source/ccmake" ] || build || return 1 + echo "Running make install for OSX package ..." && + ( + rm -rf OSX && + mkdir -p OSX/Package_Root/Applications && + mkdir -p OSX/Resources/PreFlight && + mkdir -p OSX/Resources/PostFlight && + ( + cd "cmake-${VERSION}-${PLATFORM}" && + make install DESTDIR="${RELEASE_ROOT}/OSX/Package_Root" + ) && + cp cmake-${VERSION}/Copyright.txt OSX/Resources/License.txt && + cp -r cmake-${VERSION}-${PLATFORM}/Source/CMake.app OSX/Package_Root/Applications && + echo "APPL????" > OSX/Package_Root/Applications/CMake.app/Contents/PkgInfo && + cp "${WX_RESOURCES}" OSX/Package_Root/Applications/CMake.app/Contents/Resources/wxCMakeSetup.rsrc + ) >Logs/osx_install.log 2>&1 || error_log Logs/osx_install.log +} + if [ -z "$TASK" ]; then [ -z "$REMOTE" ] && TASK="$@" fi |