aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/zint.rb
blob: 2bdde66c66c88780e1530cda33fb3aa75764f520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'
  depends_on 'libpng'

  def install
    cd('build')
    system "cmake ..  #{std_cmake_parameters} -DCMAKE_PREFIX_PATH=#{prefix} -DCMAKE_C_FLAGS=-I#{Formula.factory('libpng').include}"
    system "make install"
  end
end