aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aterm.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-12 21:18:07 -0800
committerAdam Vandenberg2012-02-12 21:41:07 -0800
commit3102a66b19268bcbe8835243b7d6e193fa92ffea (patch)
tree7e1e589c21e9fdfc30cbaddb13f8f77509ee266f /Library/Formula/aterm.rb
parent986e246e60e390da56d952b518074445c90853b6 (diff)
downloadhomebrew-3102a66b19268bcbe8835243b7d6e193fa92ffea.tar.bz2
aterm: style update
Diffstat (limited to 'Library/Formula/aterm.rb')
-rw-r--r--Library/Formula/aterm.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/aterm.rb b/Library/Formula/aterm.rb
index b9f041c88..125b41610 100644
--- a/Library/Formula/aterm.rb
+++ b/Library/Formula/aterm.rb
@@ -1,14 +1,13 @@
require 'formula'
class Aterm < Formula
- url 'ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.17/aterm-2.5.tar.gz'
homepage 'http://strategoxt.org/Tools/ATermFormat'
+ url 'ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.17/aterm-2.5.tar.gz'
md5 '33ddcb1a229baf406ad1f603eb1d5995'
def install
system "./configure", "--prefix=#{prefix}"
- # The build fails mysteriously with -j4
- ENV.j1
+ ENV.j1 # Parallel builds don't work
system "make install"
end
end