diff options
| author | Jack Nagel | 2012-06-10 16:03:42 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-06-10 16:04:30 -0500 |
| commit | 4b262f3eed2b5f5870f97d1c547f77eaba5562a7 (patch) | |
| tree | 66bc1ff3fe1ed3792b232aae3c859a438e929dac /Library/Formula | |
| parent | e9add2fadec83cbbe3ce39a68ea072cef007cead (diff) | |
| download | homebrew-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.rb | 7 |
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 |
