diff options
| author | Adam Vandenberg | 2013-05-15 20:18:14 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-05-15 20:18:46 -0700 |
| commit | 0391c1b37ce94f17a9c69e68c14446e11d716cae (patch) | |
| tree | d59ec74abea19d077437046e87ae2dd41934e914 /Library/Formula | |
| parent | c34822583705a95f61f108aa8f8d3b94cbf195b0 (diff) | |
| download | homebrew-0391c1b37ce94f17a9c69e68c14446e11d716cae.tar.bz2 | |
when: use a stable tarball
Closes #19171.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/when.rb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Library/Formula/when.rb b/Library/Formula/when.rb index eb42e0bc3..30ed98c5e 100644 --- a/Library/Formula/when.rb +++ b/Library/Formula/when.rb @@ -2,12 +2,16 @@ require 'formula' class When < Formula homepage 'http://www.lightandmatter.com/when/when.html' - url 'http://www.lightandmatter.com/when/when.tar.gz' - sha1 '1bd6d8e1cb40ccc30a61ac8b22376d42fe6b2f2b' - version '1.1.31' + url 'http://www.lightandmatter.com/when/when_1.1.31-debian-source.tar.gz' + sha1 '2d986aadac5667b7eb50940a6aa547d50c9f8f82' def install - bin.install 'when' - man1.install 'when.1' + # Double-gzipped. + system "tar xvf when_1.1.31.orig.tar.gz" + cd "when-1.1.31" do + prefix.install_metafiles + bin.install 'when' + man1.install 'when.1' + end end end |
