aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2014-05-23 20:05:36 +0200
committerAdam Vandenberg2014-05-23 11:23:17 -0700
commitefa03be910edb0c678d0e16c94b8bf99901e9102 (patch)
tree1ed73071d4435f3dd205f2ae8ce08ceab4481a12 /Library
parent9aded23a41937607a00c689b0ab63d9af73758f5 (diff)
downloadhomebrew-efa03be910edb0c678d0e16c94b8bf99901e9102.tar.bz2
chuck 1.3.4.0
Closes #29525. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/chuck.rb15
1 files changed, 2 insertions, 13 deletions
diff --git a/Library/Formula/chuck.rb b/Library/Formula/chuck.rb
index ac84e0dd8..3c828c8f2 100644
--- a/Library/Formula/chuck.rb
+++ b/Library/Formula/chuck.rb
@@ -2,22 +2,11 @@ require 'formula'
class Chuck < Formula
homepage 'http://chuck.cs.princeton.edu/'
- url 'http://chuck.cs.princeton.edu/release/files/chuck-1.3.3.0.tgz'
- sha1 'fdf70c860c9fabf45a8caf07830bc70548ce3bba'
+ url 'http://chuck.cs.princeton.edu/release/files/chuck-1.3.4.0.tgz'
+ sha1 'd32faae2cb60fc81d2716b477cf2d54bc548d9c6'
def install
cd "src" do
- # On 10.9, chuck fails to set flags to link against the
- # private framework it needs
- # See: https://github.com/Homebrew/homebrew/issues/26519
- inreplace 'makefile.osx' do |s|
- # Continuation of another line, which the change_make_var! will mangle
- s.gsub! ' -weak_framework MultitouchSupport', ''
- s.change_make_var! 'LINK_EXTRAS',
- '-F/System/Library/PrivateFrameworks -weak_framework MultitouchSupport'
- s.remove_make_var! 'ISYSROOT'
- end
-
system "make osx"
bin.install "chuck"
end