diff options
| author | Brett Koonce | 2014-09-23 18:37:16 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-09-23 18:46:25 -0700 |
| commit | 800842eec1d9633ee95c5e003e5a8813eeae0739 (patch) | |
| tree | 8756c1b55130c121b82e3119c2afe42d7821a2f1 /Library | |
| parent | a83c1c55fc02a313e08819572b59fa9438a7fdda (diff) | |
| download | homebrew-800842eec1d9633ee95c5e003e5a8813eeae0739.tar.bz2 | |
tlsdate 0.0.8
Closes #32585.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tlsdate.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/tlsdate.rb b/Library/Formula/tlsdate.rb index 992b903d4..8b0c2b89d 100644 --- a/Library/Formula/tlsdate.rb +++ b/Library/Formula/tlsdate.rb @@ -1,10 +1,10 @@ -require 'formula' +require "formula" class Tlsdate < Formula - homepage 'https://www.github.com/ioerror/tlsdate/' - head 'https://github.com/ioerror/tlsdate.git' - url 'https://github.com/ioerror/tlsdate/archive/tlsdate-0.0.7.tar.gz' - sha1 '572ecdd4aa69f9bbcca47f9b12dcd22260838313' + homepage "https://www.github.com/ioerror/tlsdate/" + head "https://github.com/ioerror/tlsdate.git" + url "https://github.com/ioerror/tlsdate/archive/tlsdate-0.0.8.tar.gz" + sha1 "9de7c712ba21b61b06c130fe0e68fd6fdd3ab4aa" depends_on "autoconf" => :build depends_on "automake" => :build @@ -12,9 +12,9 @@ class Tlsdate < Formula depends_on "pkg-config" => :build def install - system './autogen.sh' - system './configure', '--disable-dependency-tracking', "--prefix=#{prefix}" - system 'make', 'install' + system "./autogen.sh" + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make", "install" end test do |
