diff options
| author | David Höppner | 2010-02-03 13:40:24 +0100 |
|---|---|---|
| committer | David Höppner | 2010-02-03 13:40:24 +0100 |
| commit | c72ff6715baf09b63caa103f0bec97ae98258e4a (patch) | |
| tree | bc9da324d78953c8e6f85361fc79adbbbf30cbe3 /Library | |
| parent | 756fc967c4c2816fa218fa2e7f742cbe47b46d27 (diff) | |
| download | homebrew-c72ff6715baf09b63caa103f0bec97ae98258e4a.tar.bz2 | |
discount: correct man path
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/discount.rb | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/discount.rb b/Library/Formula/discount.rb index 5f55b7ca5..4903fea04 100644 --- a/Library/Formula/discount.rb +++ b/Library/Formula/discount.rb @@ -6,11 +6,10 @@ class Discount <Formula md5 'b7a4900bedd2d75147b0b708fb6e16ed' def install - system "./configure.sh", "--prefix=#{prefix}" - system "make" - system "mkdir -p #{prefix}/bin" - system "mkdir -p #{prefix}/lib" - system "mkdir -p #{prefix}/include" - system "make install" + system "./configure.sh", "--prefix=#{prefix}", "--mandir=#{share}" + bin.mkdir + lib.mkdir + include.mkdir + system "make install.everything" end end |
