set correct mandir for xpdf

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Jonathon L Duckworth 2010-10-22 14:39:18 -04:00 committed by Adam Vandenberg
parent f9498617c6
commit adec1eeee6

View file

@ -15,8 +15,10 @@ class Xpdf <Formula
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
system "make install"
end
end
end