rdate 1.5

Tool for connecting to RFC 868 time servers.

Closes Homebrew/homebrew#14453.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Stian Eikeland 2012-08-25 19:35:05 +02:00 committed by Adam Vandenberg
parent cb14ed4047
commit e4daedc615
1 changed files with 14 additions and 0 deletions

14
Formula/rdate.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Rdate < Formula
homepage 'http://www.aelius.com/njh/rdate/'
url 'http://www.aelius.com/njh/rdate/rdate-1.5.tar.gz'
sha1 'd7212503907db741ab53c4dd13ed141702d1809b'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end