diff options
| author | Berk D. Demir | 2010-03-21 18:24:21 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-21 19:25:43 -0700 |
| commit | 524e29923dcd63d3402013518e2043d3122739fe (patch) | |
| tree | ae6c7237c6b892b688984e7f0f613d0348d56b91 /Library | |
| parent | 24c95cd21452c6341ce31a38390660020d8a98f9 (diff) | |
| download | homebrew-524e29923dcd63d3402013518e2043d3122739fe.tar.bz2 | |
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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rsnapshot.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/rsnapshot.rb b/Library/Formula/rsnapshot.rb new file mode 100644 index 000000000..6eabd8784 --- /dev/null +++ b/Library/Formula/rsnapshot.rb @@ -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 |
