1
0
Fork 0

Fix svn install renaming in Mac packaging

This commit is contained in:
James Turner 2012-08-22 22:31:59 +01:00
parent 33a19f30a9
commit 29e267f18a
2 changed files with 9 additions and 25 deletions

View file

@ -42,15 +42,6 @@ $prefixDir=Dir.pwd + "/dist"
dmgDir=Dir.pwd + "/image"
srcDir=Dir.pwd + "/flightgear"
def fix_svn_install_names(object)
$svnLibs.each do |l|
fileName = "lib#{l}-1.0.dylib"
oldName = "#{$prefixDir}/lib/#{fileName}"
newName = "@executable_path/../Frameworks/#{fileName}"
`install_name_tool -change #{oldName} #{newName} #{object}`
end
end
puts "Erasing previous image dir"
`rm -rf #{dmgDir}`
@ -62,6 +53,14 @@ resourcesDir=contents+"/Resources"
osgPluginsDir=contents+"/PlugIns/osgPlugins-#{osgVersion}"
volName="\"FlightGear Nightly Build\""
def fix_svn_install_names(object)
$svnLibs.each do |l|
fileName = "lib#{l}-1.0.dylib"
newName = "@executable_path/../Frameworks/#{fileName}"
`install_name_tool -change #{fileName} #{newName} #{object}`
end
end
def copy_svn_libs()
puts "Copying Subversion client libraries"
$svnLibs.each do |l|
@ -69,7 +68,7 @@ def copy_svn_libs()
path = "#{$frameworksDir}/#{libFile}"
`cp #{$prefixDir}/lib/#{libFile} #{$frameworksDir}`
fix_svn_install_names(path)
`install_name_tool -id #{libFile} #{path}`
# `install_name_tool -id #{libFile} #{path}`
end
end

View file

@ -1,15 +0,0 @@
#!/bin/sh
SDK_PATH="/Developer/SDKs/MacOSX10.6.sdk"
OSX_TARGET="10.6"
svn co https://macflightgear.svn.sourceforge.net/svnroot/macflightgear/trunk/FlightGearOSX macflightgear
pushd macflightgear
# compile the stub executable
gcc -o FlightGear -mmacosx-version-min=$OSX_TARGET -isysroot $SDK_PATH -arch i386 main.m \
-framework Cocoa -framework RubyCocoa -framework Foundation -framework AppKit
popd