aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStian Eikeland2012-08-25 19:35:05 +0200
committerAdam Vandenberg2012-09-01 12:53:10 -0700
commit9969b2d7604a30af0c7596ddde53d1e4b96a64c0 (patch)
tree1d3eba60ea09bf665c9220d3a8882ced07d5bd3c /Library
parent4bf7fca2486344ed4ad781e0c5617d8327986d6a (diff)
downloadhomebrew-9969b2d7604a30af0c7596ddde53d1e4b96a64c0.tar.bz2
rdate 1.5
Tool for connecting to RFC 868 time servers. Closes #14453. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rdate.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/rdate.rb b/Library/Formula/rdate.rb
new file mode 100644
index 000000000..fff7b938b
--- /dev/null
+++ b/Library/Formula/rdate.rb
@@ -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