diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mosquitto.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/mosquitto.rb b/Library/Formula/mosquitto.rb index 4efadc12f..ffe23fd1f 100644 --- a/Library/Formula/mosquitto.rb +++ b/Library/Formula/mosquitto.rb @@ -7,8 +7,13 @@ class Mosquitto < Formula depends_on 'cmake' => :build + def patches + # Fixes man page installation: in man/CMakeLists.txt, + # the parentheses around MANDEST should be braces. + { :p1 => "https://bitbucket.org/oojah/mosquitto/changeset/fc5c83daefb0/raw/mosquitto-fc5c83daefb0.diff" } + end + def install - ENV.deparallelize system "cmake . #{std_cmake_parameters}" system "make install" end |
