homebrew-core/Formula/rsnapshot.rb

13 lines
340 B
Ruby
Raw Normal View History

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