diff options
| author | Sven Agnew | 2012-08-29 04:03:09 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-02 11:52:37 -0700 |
| commit | a8bbde0b87f97a38c0a4651bf8041c118d91f321 (patch) | |
| tree | 7f618545e001e5141711ec485805b359d6b72dd3 | |
| parent | 5a4c218a72583ead49a002139477aedbf01ee08c (diff) | |
| download | homebrew-a8bbde0b87f97a38c0a4651bf8041c118d91f321.tar.bz2 | |
backupninja 1.0.1
Closes #14509.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/backupninja.rb | 21 |
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 |
