plt-racket: use github tarball instead of git tag
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
f8fcff60a8
commit
89dea1bc7b
1 changed files with 5 additions and 4 deletions
|
@ -2,9 +2,10 @@ require 'formula'
|
|||
|
||||
class PltRacket < Formula
|
||||
homepage 'http://racket-lang.org/'
|
||||
# Use GitHub; tarball doesn't have everything needed for building on OS X
|
||||
url 'https://github.com/plt/racket.git', :tag => 'v5.2'
|
||||
version '5.2'
|
||||
# Use GitHub tarball as the release tarball doesn't have
|
||||
# everything needed for building on OS X
|
||||
url 'https://github.com/plt/racket/tarball/v5.2'
|
||||
sha1 'bb2c6b6504796a88dada10b510f040b5bbec7b2e'
|
||||
|
||||
# Don't strip symbols; need them for dynamic linking.
|
||||
skip_clean 'bin'
|
||||
|
@ -22,7 +23,7 @@ class PltRacket < Formula
|
|||
|
||||
system "./configure", *args
|
||||
system "make"
|
||||
ohai "Installing might take a long time (~40 minutes)"
|
||||
ohai "Installing may take a long time (~40 minutes)" unless ARGV.verbose?
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue