homebrew-core/Formula/zint.rb

26 lines
640 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Zint < Formula
homepage 'http://www.zint.org.uk'
2012-02-22 04:48:36 +00:00
url 'http://downloads.sourceforge.net/project/zint/zint/2.4.3/zint-2.4.3.tar.gz'
md5 '2b47caff88cb746f212d6a0497185358'
2012-02-22 04:48:36 +00:00
head 'git://zint.git.sourceforge.net/gitroot/zint/zint'
depends_on 'cmake' => :build
def install
2012-02-22 04:48:36 +00:00
mkdir 'zint-build' do
system "cmake #{std_cmake_parameters} -DCMAKE_PREFIX_PATH=#{prefix} -DCMAKE_C_FLAGS=-I/usr/X11/include .."
system "make install"
end
end
2011-03-14 20:48:20 +00:00
def test
mktemp do
system "#{bin}/zint -o test-zing.png -d 'This Text'"
2012-02-22 04:48:36 +00:00
system "/usr/bin/qlmanage -p test-zing.png"
end
2011-03-14 20:48:20 +00:00
end
end