libharu 2.2.1

libHaru is a cross-platform toolkit for writing PDF files (but not reading)
written in ANSI C.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Charlie Sharpsteen 2011-05-16 10:12:54 -07:00 committed by Adam Vandenberg
parent 1cb28f7581
commit 765ef90c94
1 changed files with 15 additions and 0 deletions

15
Formula/libharu.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Libharu < Formula
homepage 'http://www.libharu.org'
url 'http://libharu.org/files/libharu-2.2.1.tar.bz2'
md5 '4febd7e677b1c5d54db59a608b84e79f'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
# ENV.x11 doesn't get picked up
"--with-png=/usr/X11"
system "make install"
end
end