aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorSteven Sartorius2010-05-16 14:35:52 -0400
committerAdam Vandenberg2010-07-08 09:03:51 -0700
commit12244e716bb44947efd40b103cef043430c19fbb (patch)
tree5fbdd7335564eb76b67148b863fc88610cb15cf9 /Library/Formula
parente8ac36d380da256ef11598cfa86d330a6310a75e (diff)
downloadhomebrew-12244e716bb44947efd40b103cef043430c19fbb.tar.bz2
rdiff-backup
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rdiff-backup.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/Library/Formula/rdiff-backup.rb b/Library/Formula/rdiff-backup.rb
new file mode 100644
index 000000000..3b1562980
--- /dev/null
+++ b/Library/Formula/rdiff-backup.rb
@@ -0,0 +1,26 @@
+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