aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/alpine.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/alpine.rb')
-rw-r--r--Library/Formula/alpine.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/Library/Formula/alpine.rb b/Library/Formula/alpine.rb
index 0dc3ba8a6..dc29a8f6e 100644
--- a/Library/Formula/alpine.rb
+++ b/Library/Formula/alpine.rb
@@ -5,16 +5,17 @@ class Alpine < Formula
homepage 'http://www.washington.edu/alpine/'
md5 '0f4757167baf5c73aa44f2ffa4860093'
- def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--with-ssl-include-dir=/usr/include/openssl"
+ def patches
+ DATA unless MacOS.snow_leopard?
+ end
+ def install
ENV.j1
+ system "./configure", "--disable-debug",
+ "--prefix=#{prefix}",
+ "--with-ssl-include-dir=/usr/include/openssl"
system "make install"
end
-
- def patches
- DATA if MACOS_VERSION >= 10.6
- end
end
__END__