1d48daaa4d
The compiler setting in the xcodeproj is overridden by the CC setting in the environment. This is a bit insane IMO since the xcodeproj itself has detailed decisions about what tools to use. Fixes Homebrew/homebrew#6406.
44 lines
1.1 KiB
Ruby
44 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Jstalk < Formula
|
|
url 'https://github.com/ccgus/jstalk.git', :tag => "v1.0.1"
|
|
homepage 'http://jstalk.org/'
|
|
version '1.0.1'
|
|
|
|
def install
|
|
if MacOS.leopard?
|
|
onoe "jstalk requires Mac OS X 10.6+"
|
|
exit 1
|
|
end
|
|
|
|
args = ["-configuration", "Release", "ONLY_ACTIVE_ARCH=YES"]
|
|
targets = ["JSTalk Framework", "jstalk command line", "JSTalk Editor"]
|
|
|
|
targets.each do |target|
|
|
system "xcodebuild", "-target", target, *args
|
|
end
|
|
|
|
cd 'build/Release' do
|
|
bin.install 'jstalk'
|
|
prefix.install "JSTalk Editor.app"
|
|
(prefix+'Frameworks').install 'JSTalk.framework'
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Framework JSTalk was installed to:
|
|
#{prefix}/Frameworks/JSTalk.framework
|
|
|
|
You may want to symlink this Framework to a standard OS X location,
|
|
such as:
|
|
mkdir ~/Frameworks
|
|
ln -s "#{prefix}/Frameworks/JSTalk.framework" ~/Frameworks
|
|
|
|
JSTalk Editor.app was installed in:
|
|
#{prefix}
|
|
|
|
To symlink into ~/Applications, you can do:
|
|
brew linkapps
|
|
EOS
|
|
end
|
|
end
|