aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2009-10-01 21:30:06 -0700
committerMax Howell2009-10-02 15:33:29 +0100
commita7fc7eef7b186498c599c05a7de0c3fef8c04607 (patch)
tree774bf43d8cb2f397cfb4725fcd03824439cfcbbe /Library/Formula
parente77be445096e036eedc9d557088cc80e81b0cc53 (diff)
downloadhomebrew-a7fc7eef7b186498c599c05a7de0c3fef8c04607.tar.bz2
Don't force gcc in Aspell, now that LD is set correctly.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/aspell.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/aspell.rb b/Library/Formula/aspell.rb
index 2caeff5a2..96c6d3d7b 100644
--- a/Library/Formula/aspell.rb
+++ b/Library/Formula/aspell.rb
@@ -1,12 +1,11 @@
require 'brewkit'
class Aspell <Formula
- @url='ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.tar.gz'
- @homepage='http://aspell.net/'
- @md5='bc80f0198773d5c05086522be67334eb'
+ url 'ftp://ftp.gnu.org/gnu/aspell/aspell-0.60.6.tar.gz'
+ homepage 'http://aspell.net/'
+ md5 'bc80f0198773d5c05086522be67334eb'
def install
- ENV.gcc_4_2
system "./configure", "--prefix=#{prefix}"
system "make install"
end