aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Agnew2012-08-29 04:03:09 +0200
committerAdam Vandenberg2012-10-02 11:52:37 -0700
commita8bbde0b87f97a38c0a4651bf8041c118d91f321 (patch)
tree7f618545e001e5141711ec485805b359d6b72dd3
parent5a4c218a72583ead49a002139477aedbf01ee08c (diff)
downloadhomebrew-a8bbde0b87f97a38c0a4651bf8041c118d91f321.tar.bz2
backupninja 1.0.1
Closes #14509. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/backupninja.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/backupninja.rb b/Library/Formula/backupninja.rb
new file mode 100644
index 000000000..acfe2fb52
--- /dev/null
+++ b/Library/Formula/backupninja.rb
@@ -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