930c5d7eab
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>
12 lines
340 B
Ruby
12 lines
340 B
Ruby
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
|