diff options
| author | Jack Nagel | 2014-12-06 13:24:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-06 13:24:57 -0500 |
| commit | 6a0cfefa6d9d6bf59542a961152378c0d7fe343b (patch) | |
| tree | f3cba93df7d7715b455e7543544fbacf2e9425d8 /Library | |
| parent | 54360f730867d191f8456b3401b0ea6edf7e95c0 (diff) | |
| download | homebrew-6a0cfefa6d9d6bf59542a961152378c0d7fe343b.tar.bz2 | |
fossil 1.29
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fossil.rb | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/Library/Formula/fossil.rb b/Library/Formula/fossil.rb index cfd34e4ca..5a7b1255b 100644 --- a/Library/Formula/fossil.rb +++ b/Library/Formula/fossil.rb @@ -1,29 +1,27 @@ -require 'formula' +require "formula" class Fossil < Formula - homepage 'http://www.fossil-scm.org/' - head 'fossil://http://www.fossil-scm.org/' - url 'http://www.fossil-scm.org/download/fossil-src-20140127173344.tar.gz' - sha1 '9e547a27d2447f12df951e86670da12c7cfbd26a' - version '1.28' + homepage "http://www.fossil-scm.org/" + head "fossil://http://www.fossil-scm.org/" + url "http://www.fossil-scm.org/download/fossil-src-20140612172556.tar.gz" + sha1 "173c3350ba39ecfee6e660f866b4f3104e351b33" + version "1.29" bottle do - cellar :any - sha1 "c4f7800f7a88aee0f5c27dc8ee90e7d67dc90570" => :mavericks - sha1 "2b8fa6a214c937ea56e50841614cbcc68375153d" => :mountain_lion - sha1 "ad5e8b7cc41ae2a81f5b0ed84110d6e34b56622b" => :lion end - option 'without-json', 'Build without "json" command support.' - option 'without-tcl', "Build without the tcl-th1 command bridge." + option "without-json", "Build without 'json' command support" + option "without-tcl", "Build without the tcl-th1 command bridge" + + depends_on "openssl" def install args = [] - args << "--json" if build.with? 'json' - args << "--with-tcl" if build.with? 'tcl' + args << "--json" if build.with? "json" + args << "--with-tcl" if build.with? "tcl" system "./configure", *args system "make" - bin.install 'fossil' + bin.install "fossil" end end |
