blob: 5afa50f7b0d6f80b51956e258d1e382c19efd3dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|