2012-12-18 13:29:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Rancid < Formula
|
|
|
|
homepage 'http://www.shrubbery.net/rancid/'
|
|
|
|
url 'ftp://ftp.shrubbery.net/pub/rancid/rancid-2.3.8.tar.gz'
|
|
|
|
sha1 '7469d7f9e39e9f86f977f1f0963300e5d183088f'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--exec-prefix=#{prefix}", "--mandir=#{man}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:23:05 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/rancid", "localhost"
|
|
|
|
end
|
2012-12-18 13:29:35 +00:00
|
|
|
end
|