Skip to content

Commit

Permalink
JSTalk 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Vandenberg <[email protected]>
  • Loading branch information
eager authored and adamv committed Mar 22, 2011
1 parent 829f5cb commit b86cc4b
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions Library/Formula/jstalk.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
require 'formula'

class Jstalk < Formula
url 'git:https://github.com/ccgus/jstalk.git', :tag => "v1.0.1"
homepage 'http:https://jstalk.org/'
version '1.0.1'

def install
if MACOS_VERSION < 10.6
onoe "jstalk requires Mac OS X 10.6+"
exit 1
end

# JSTalk specifies its particular compiler needs in jstalk.xcodeproj
ENV.delete 'CC'
ENV.delete 'CXX'

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

0 comments on commit b86cc4b

Please sign in to comment.