homebrew-core/Formula/scantailor.rb

18 lines
454 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Scantailor < Formula
url 'http://downloads.sourceforge.net/project/scantailor/scantailor/0.9.9.2/scantailor-0.9.9.2.tar.gz'
homepage 'http://scantailor.sourceforge.net/'
md5 '0944b12c936019fe12269c7a356d60d0'
depends_on 'cmake'
depends_on 'qt'
depends_on 'jpeg'
depends_on 'boost'
def install
system "cmake . #{std_cmake_parameters} -DPNG_INCLUDE_DIR=/usr/X11R6/include"
system "make install"
end
end