homebrew-core/Formula/libharu.rb

28 lines
946 B
Ruby
Raw Normal View History

require 'formula'
class Libharu < Formula
homepage 'http://www.libharu.org'
url 'http://libharu.org/files/libharu-2.2.1.tar.bz2'
sha1 'bfea7d9df3fb6a112340d0d54731f62f53b26d2f'
2014-03-23 02:51:41 +00:00
revision 1
2014-03-23 02:51:41 +00:00
depends_on 'libpng'
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"
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
2014-03-06 02:12:51 +00:00
"--with-png=#{Formula["libpng"].opt_prefix}"
system "make install"
end
end