2011-05-16 17:12:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libharu < Formula
|
|
|
|
homepage 'http://www.libharu.org'
|
|
|
|
url 'http://libharu.org/files/libharu-2.2.1.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'bfea7d9df3fb6a112340d0d54731f62f53b26d2f'
|
2014-03-23 02:51:41 +00:00
|
|
|
revision 1
|
2011-05-16 17:12:54 +00:00
|
|
|
|
2014-10-21 14:16:50 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "38e83c295e83e290a5df03f4932b07ca8bc18707" => :yosemite
|
|
|
|
sha1 "22384f48ee22ae06ccf0636a86c61fa27fd26797" => :mavericks
|
|
|
|
sha1 "0a20c683544726d870f53c005f79a730b1effffe" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2014-03-23 02:51:41 +00:00
|
|
|
depends_on 'libpng'
|
2012-06-07 01:35:12 +00:00
|
|
|
|
2014-03-14 15:03:24 +00:00
|
|
|
# Fixes compilation against LibPNG 1.5. Can be removed on next release.
|
|
|
|
# Based on a commit in the LibHaru repository which does not apply cleanly
|
|
|
|
# due to a missing CHANGES file:
|
|
|
|
# https://github.com/tony2001/libharu/commit/e5bf8b0.patch
|
|
|
|
patch do
|
|
|
|
url "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-libs/libharu/files/libharu-2.2.1-libpng-1.5.patch?revision=1.1"
|
|
|
|
sha1 "463641d4570d59d632c1878597253db962129599"
|
2011-08-25 14:43:28 +00:00
|
|
|
end
|
|
|
|
|
2011-05-16 17:12:54 +00:00
|
|
|
def install
|
2012-06-07 01:35:12 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2011-05-16 17:12:54 +00:00
|
|
|
"--prefix=#{prefix}",
|
2014-03-06 02:12:51 +00:00
|
|
|
"--with-png=#{Formula["libpng"].opt_prefix}"
|
2011-05-16 17:12:54 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|