aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-03 22:18:26 -0700
committerAdam Vandenberg2010-07-03 22:18:26 -0700
commitc33c74bf4ac6c32665d3548489130c8f540da55e (patch)
tree819757049592fa23e885665e26a84f3b824e0377 /Library
parent0add47664b5cbf7183404a15d63dbfaa112f7933 (diff)
downloadhomebrew-c33c74bf4ac6c32665d3548489130c8f540da55e.tar.bz2
Add Python caveats to duplicity.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/duplicity.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/Library/Formula/duplicity.rb b/Library/Formula/duplicity.rb
index 05f08acdb..24a629bce 100644
--- a/Library/Formula/duplicity.rb
+++ b/Library/Formula/duplicity.rb
@@ -11,4 +11,13 @@ class Duplicity <Formula
ENV.universal_binary
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
+
+ def caveats
+ <<-EOS.undent
+ If you are using a non-Homebrew-built Python, you may need to add:
+ #{HOMEBREW_PREFIX}/lib/pythonX.Y/site-packages
+ to your PYTHONPATH, where "X.Y" was the version of Python this
+ formula was built against.
+ EOS
+ end
end