2010-05-18 19:21:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Leptonica < Formula
|
2011-03-28 00:10:04 +00:00
|
|
|
homepage 'http://www.leptonica.org/'
|
2012-09-02 08:00:24 +00:00
|
|
|
url 'http://www.leptonica.org/source/leptonica-1.69.tar.gz'
|
|
|
|
sha1 '91199f99d2e78b15b76ffa6fc4e86ee458a330e8'
|
2014-03-23 02:51:41 +00:00
|
|
|
revision 1
|
2010-05-18 19:21:25 +00:00
|
|
|
|
2014-03-23 02:51:41 +00:00
|
|
|
depends_on 'libpng' => :recommended
|
2013-02-01 00:24:57 +00:00
|
|
|
depends_on 'jpeg' => :recommended
|
|
|
|
depends_on 'libtiff' => :optional
|
2011-10-21 02:46:31 +00:00
|
|
|
|
2013-09-03 00:16:46 +00:00
|
|
|
conflicts_with 'osxutils',
|
|
|
|
:because => "both leptonica and osxutils ship a `fileinfo` executable."
|
|
|
|
|
2010-05-18 19:21:25 +00:00
|
|
|
def install
|
2012-03-11 20:36:14 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-05-18 19:21:25 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2012-03-11 20:36:14 +00:00
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-09-02 08:00:24 +00:00
|
|
|
system "#{bin}/yuvtest"
|
|
|
|
end
|
|
|
|
end
|