blob: 0ca6801c537be1076f4de5611b726c3c43f2686a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Nylon < Formula
  homepage 'http://monkey.org/~marius/pages/?page=nylon'
  url 'http://monkey.org/~marius/nylon/nylon-1.21.tar.gz'
  sha1 '96f82a785ffe92fd6c1eebb69787327eecc90569'
  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
  |