2010-03-22 01:24:21 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rsnapshot < Formula
|
2010-03-22 01:24:21 +00:00
|
|
|
url 'http://rsnapshot.org/downloads/rsnapshot-1.3.1.tar.gz'
|
|
|
|
homepage 'http://rsnapshot.org'
|
|
|
|
sha1 'a3aa3560dc389e1b00155a5869558522c4a29e05'
|
2011-05-24 02:43:53 +00:00
|
|
|
head 'cvs://:pserver:anonymous@rsnapshot.cvs.sourceforge.net:/cvsroot/rsnapshot:rsnapshot'
|
2010-03-22 01:24:21 +00:00
|
|
|
|
|
|
|
def install
|
2010-04-01 19:14:53 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-03-22 01:24:21 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|