blob: cacb3fb7d4d629576d84c422121e585db1972fc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|