aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plt-racket.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-20 22:04:21 -0800
committerAdam Vandenberg2012-02-24 21:35:50 -0800
commitd3f35542992c4978525b1eaaa0255c92f1e830e0 (patch)
tree499df60efe14b16e641247313cdd07416af1290a /Library/Formula/plt-racket.rb
parent9c77e1cefce38f2a3001ce398ad0b4dc2f668243 (diff)
downloadhomebrew-d3f35542992c4978525b1eaaa0255c92f1e830e0.tar.bz2
Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir" * And "Dir[]" instead of "Dir.glob" * Also style fixes and nitpicks
Diffstat (limited to 'Library/Formula/plt-racket.rb')
-rw-r--r--Library/Formula/plt-racket.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/plt-racket.rb b/Library/Formula/plt-racket.rb
index ab5069285..7ccd54e60 100644
--- a/Library/Formula/plt-racket.rb
+++ b/Library/Formula/plt-racket.rb
@@ -1,16 +1,16 @@
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'
- homepage 'http://racket-lang.org/'
version '5.2'
# Don't strip symbols; need them for dynamic linking.
skip_clean 'bin'
def install
- Dir.chdir 'src' do
+ cd 'src' do
args = ["--disable-debug", "--disable-dependency-tracking",
"--enable-xonx",
"--enable-shared",