diff options
Diffstat (limited to 'Library/Formula/zint.rb')
| -rw-r--r-- | Library/Formula/zint.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/zint.rb b/Library/Formula/zint.rb index 5ed8e2181..6a1dc9193 100644 --- a/Library/Formula/zint.rb +++ b/Library/Formula/zint.rb @@ -11,15 +11,15 @@ class Zint < Formula def install mkdir 'zint-build' do - system "cmake #{std_cmake_parameters} -DCMAKE_PREFIX_PATH=#{prefix} -DCMAKE_C_FLAGS=-I/usr/X11/include .." + system "cmake #{std_cmake_parameters} -DCMAKE_PREFIX_PATH='#{prefix}' -DCMAKE_C_FLAGS=-I/usr/X11/include .." system "make install" end end def test mktemp do - system "#{bin}/zint -o test-zing.png -d 'This Text'" - system "/usr/bin/qlmanage -p test-zing.png" + system "#{bin}/zint", "-o", "test-zing.png", "-d", "This Text" + system "/usr/bin/qlmanage", "-p", "test-zing.png" end end end |
