Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
backupninja 1.0.1
Browse files Browse the repository at this point in the history
Closes #14509.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
Sven Agnew authored and adamv committed Oct 2, 2012
1 parent 5a4c218 commit a8bbde0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions 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

0 comments on commit a8bbde0

Please sign in to comment.