d79ee8d163
Fixed formulas referencing X11 via the X11R6 symlink to instead reference the path X11 should be at directly (in case the user doesn't have that symlink, like I didn't) Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
605 B
Ruby
22 lines
605 B
Ruby
require 'formula'
|
|
|
|
class Zint < Formula
|
|
url 'http://downloads.sourceforge.net/project/zint/zint/2.4.1/zint-2.4.1.tar.gz'
|
|
homepage 'http://www.zint.org.uk'
|
|
md5 '7ec4441907827fa613b11847a467c61d'
|
|
head 'git://zint.git.sourceforge.net/gitroot/zint/zint'
|
|
|
|
depends_on 'cmake'
|
|
|
|
def install
|
|
cd('build')
|
|
system "cmake .. #{std_cmake_parameters} -DCMAKE_PREFIX_PATH=#{prefix} -DCMAKE_C_FLAGS=-I/usr/X11/include"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "zint -o test-zing.png -d 'This Text'"
|
|
system "open test-zing.png"
|
|
puts "You may want to `rm test-zing.png`"
|
|
end
|
|
end
|