Skip to content

Instantly share code, notes, and snippets.

@totem3
Last active August 29, 2015 14:08
Show Gist options
  • Save totem3/3ef50f3374894ed080df to your computer and use it in GitHub Desktop.
Save totem3/3ef50f3374894ed080df to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment