require 'formula'
class AprUtil < Formula
url 'http://apache.cs.utah.edu//apr/apr-util-1.5.4.tar.gz'
homepage ''
sha1 '72cc3ac693b52fb831063d5c0de18723bc8e0095'
depends_on 'apr'
def install
system "./configure", "--with-apr=/usr/local/Cellar/apr/1.5.1", "--prefix=#{prefix}"
system "make"
system "make install"
end
end