tlsdate 0.0.6 (new formula)

tlsdate is a parasitic network time utility.
It is the default ntp-like client for ChromeOS.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Jacob Appelbaum 2013-02-16 03:41:44 -08:00 committed by Mike McQuaid
parent 76f212190d
commit adadefd5bf
1 changed files with 23 additions and 0 deletions

23
Formula/tlsdate.rb Normal file
View File

@ -0,0 +1,23 @@
require 'formula'
class Tlsdate < Formula
homepage 'https://www.github.com/ioerror/tlsdate/'
url 'https://github.com/ioerror/tlsdate/archive/tlsdate-0.0.6.tar.gz'
sha1 '7b0cbd73b81ee2775396724f42c0fb22f7020361'
head 'https://github.com/ioerror/tlsdate.git'
depends_on :autoconf
depends_on :automake
depends_on :libtool
depends_on 'pkg-config' => :build
def install
system './autogen.sh'
system './configure', '--disable-dependency-tracking', "--prefix=#{prefix}"
system 'make', 'install'
end
def test
system 'tlsdate', '--verbose', '--dont-set-clock'
end
end