blob: 9faf249787e78c25eea08e8acff60f21d9f77903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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'
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
test do
system "#{bin}/tlsdate", "--verbose", "--dont-set-clock"
end
end
|