20e4a405ee
rdiff-backup backs up one directory to another, possibly over a network. It's a python script which I installed using the '--local' switch. This will create a 'site-packages' folder under ~/.local/. Don't know if this is the approved homebrew approach but it works for me. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Install privately into libexec and link scripts into bin. This way we don't touch any site-packages folders.
26 lines
619 B
Ruby
26 lines
619 B
Ruby
require 'formula'
|
|
|
|
class RdiffBackup <Formula
|
|
url 'http://savannah.nongnu.org/download/rdiff-backup/rdiff-backup-1.2.8.tar.gz'
|
|
homepage 'http://rdiff-backup.nongnu.org/'
|
|
md5 '1a94dc537fcf74d6a3a80bd27808e77b'
|
|
|
|
depends_on 'librsync'
|
|
|
|
def install
|
|
ENV.no_optimization
|
|
system "python", "setup.py", "--librsync-dir=#{prefix}", "build"
|
|
|
|
libexec.install Dir['build/lib.macosx*/rdiff_backup']
|
|
libexec.install Dir['build/scripts-*/*']
|
|
|
|
bin.mkpath
|
|
Dir.chdir libexec do
|
|
Dir['rdiff-backup*'].each do |f|
|
|
ln_s (libexec+f), bin
|
|
end
|
|
end
|
|
|
|
man1.install Dir['*.1']
|
|
end
|
|
end
|