backupninja 1.0.1

Closes Homebrew/homebrew#14509.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Sven Agnew 2012-08-29 04:03:09 +02:00 committed by Adam Vandenberg
parent 0cf3f1ca8b
commit 85ee967647
1 changed files with 21 additions and 0 deletions

21
Formula/backupninja.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class Backupninja < Formula
homepage 'https://labs.riseup.net/code/projects/show/backupninja'
url 'https://labs.riseup.net/code/attachments/download/275/backupninja-1.0.1.tar.gz'
sha1 'c9b2cef3c289b2b71cc8fd33f8e089a70a11affb'
head 'git://labs.riseup.net/backupninja.git'
depends_on "dialog"
depends_on "gawk"
skip_clean 'etc/backup.d'
skip_clean 'var/log'
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end