Add mandir configuration option to the pwsafe build

The current formula doesn't tell pwsafe where to put the man pages, and as a
result it appears that there are no man pages. Adding "--mandir=#{man}" (as in
the formula-cookbook) fixes things right up.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Peter Aronoff 2010-04-30 20:56:23 -04:00 committed by Adam Vandenberg
parent 1b1e676e2b
commit fa642ca001

View file

@ -8,7 +8,7 @@ class Pwsafe <Formula
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
system "make install"
end
end