homebrew-core/Formula/nylon.rb
Alan Dipert 8232a5c2e2 nylon 1.21
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-31 19:44:33 -08:00

17 lines
506 B
Ruby

require 'formula'
class Nylon <Formula
url 'http://monkey.org/~marius/nylon/nylon-1.21.tar.gz'
md5 'd5de81422b8797afa328f72c694b65bb'
homepage 'http://monkey.org/~marius/pages/?page=nylon'
depends_on 'libevent'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--with-libevent=#{HOMEBREW_PREFIX}"
system "make install"
end
end