2010-05-18 19:21:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Leptonica < Formula
|
2011-03-28 00:10:04 +00:00
|
|
|
url 'http://www.leptonica.org/source/leptonica-1.68.tar.gz'
|
|
|
|
homepage 'http://www.leptonica.org/'
|
|
|
|
md5 '5cd7092f9ff2ca7e3f3e73bfcd556403'
|
2010-05-18 19:21:25 +00:00
|
|
|
|
2010-06-18 17:41:48 +00:00
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'libtiff'
|
|
|
|
|
2011-10-21 02:46:31 +00:00
|
|
|
def patches
|
|
|
|
# Leptonica is missing an #include for PNG support
|
|
|
|
# Can be removed in 1.69
|
|
|
|
# http://code.google.com/p/leptonica/issues/detail?id=56
|
2011-11-09 15:32:55 +00:00
|
|
|
"https://raw.github.com/gist/1320510/b11d417326344202d8ff03ede8151c147ec2598d/zlib-include.patch"
|
2011-10-21 02:46:31 +00:00
|
|
|
end
|
|
|
|
|
2010-05-18 19:21:25 +00:00
|
|
|
def install
|
2011-10-21 02:46:31 +00:00
|
|
|
ENV.x11
|
2010-05-18 19:21:25 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|