diff options
| author | nibbles 2bits | 2012-05-17 10:37:35 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-05-19 10:29:37 -0700 |
| commit | 322e8f8003a16f775250ce62c1964bea1f8eb4b0 (patch) | |
| tree | cc5f1a47fedb9950c590d115845c4e17324d6167 | |
| parent | 74d7d8cc5f7865d051b6bc20e362b7aff9fb012a (diff) | |
| download | homebrew-322e8f8003a16f775250ce62c1964bea1f8eb4b0.tar.bz2 | |
gcal 3.6.2
Update gcal to version 3.6.2
Add the `xz` dep to decrease the download size and mirror load.
Add `--disable-dependency-tracking` because it's an option now.
Tested on Lion with clang and llvm-gcc from XCode-4.3.2.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/gcal.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/gcal.rb b/Library/Formula/gcal.rb index 797c839a3..c84e1ece0 100644 --- a/Library/Formula/gcal.rb +++ b/Library/Formula/gcal.rb @@ -1,13 +1,15 @@ require 'formula' class Gcal < Formula - url 'http://ftpmirror.gnu.org/gcal/gcal-3.6.1.tar.gz' - mirror 'http://ftp.gnu.org/gnu/gcal/gcal-3.6.1.tar.gz' homepage 'http://www.gnu.org/software/gcal/' - md5 'a89e96db054a8b23ff6cd97049527a4f' + url 'http://ftpmirror.gnu.org/gcal/gcal-3.6.2.tar.xz' + mirror 'http://ftp.gnu.org/gnu/gcal/gcal-3.6.2.tar.xz' + sha1 '45dfa00e362d9c4ab8978a7a2f2ab898b156a3c4' + + depends_on 'xz' => :build def install - system "./configure", "--prefix=#{prefix}" + system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking' system "make install" end end |
