homebrew-core/Formula/nylon.rb

18 lines
507 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