New formula for rsnapshot

rsnapshot is a filesystem snapshot utility for making backups of local
and remote systems.

Signed-off-by: Berk D. Demir <bdd@mindcast.org>
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Berk D. Demir 2010-03-21 18:24:21 -07:00 committed by Adam Vandenberg
parent 8df99bf4cb
commit 930c5d7eab

12
Formula/rsnapshot.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Rsnapshot <Formula
url 'http://rsnapshot.org/downloads/rsnapshot-1.3.1.tar.gz'
homepage 'http://rsnapshot.org'
sha1 'a3aa3560dc389e1b00155a5869558522c4a29e05'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end