blob: 3a0cd57663ca43170da2a0397a3ef2a5fc357ae7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Rsnapshot < Formula
url 'http://rsnapshot.org/downloads/rsnapshot-1.3.1.tar.gz'
homepage 'http://rsnapshot.org'
sha1 'a3aa3560dc389e1b00155a5869558522c4a29e05'
head 'cvs://:pserver:anonymous@rsnapshot.cvs.sourceforge.net:/cvsroot/rsnapshot:rsnapshot'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|