2012-01-04 13:18:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Htpdate < Formula
|
2013-06-05 10:34:26 +00:00
|
|
|
homepage 'http://www.vervest.org/fiki/bin/view/HTP'
|
|
|
|
url 'http://www.vervest.org/htp/archive/c/htpdate-0.9.1.tar.bz2'
|
|
|
|
sha1 'e0b1a3ae9ba755471102f28a2b8a7e2dc77addc7'
|
2012-01-04 13:18:31 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make", "prefix=#{prefix}",
|
|
|
|
"STRIP=/usr/bin/strip",
|
|
|
|
"CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/htpdate", "-h"
|
2012-01-04 13:18:31 +00:00
|
|
|
end
|
|
|
|
end
|