aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-06-10 16:03:42 -0500
committerJack Nagel2012-06-10 16:04:30 -0500
commit4b262f3eed2b5f5870f97d1c547f77eaba5562a7 (patch)
tree66bc1ff3fe1ed3792b232aae3c859a438e929dac /Library/Formula
parente9add2fadec83cbbe3ce39a68ea072cef007cead (diff)
downloadhomebrew-4b262f3eed2b5f5870f97d1c547f77eaba5562a7.tar.bz2
aspell: style nits
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/aspell.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/aspell.rb b/Library/Formula/aspell.rb
index 28dfd1bf5..b48d26be2 100644
--- a/Library/Formula/aspell.rb
+++ b/Library/Formula/aspell.rb
@@ -3,15 +3,16 @@ require 'formula'
class AspellLang < Formula
def install
aspell = Formula.factory 'aspell'
- system "PATH=$PATH:#{aspell.prefix}/bin; ./configure --vars ASPELL=#{aspell.prefix}/bin/aspell PREZIP=#{aspell.prefix}/bin/prezip"
- system "PATH=$PATH:#{aspell.prefix}/bin; make install"
+ ENV.prepend 'PATH', aspell.bin, ':'
+ system "./configure", "--vars", "ASPELL=#{aspell.bin}/aspell", "PREZIP=#{aspell.bin}/prezip"
+ system "make install"
end
end
class Aspell < Formula
+ homepage 'http://aspell.net/'
url 'http://ftpmirror.gnu.org/aspell/aspell-0.60.6.1.tar.gz'
mirror 'http://ftp.gnu.org/gnu/aspell/aspell-0.60.6.1.tar.gz'
- homepage 'http://aspell.net/'
md5 'e66a9c9af6a60dc46134fdacf6ce97d7'
fails_with :llvm do