aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pound.rb
blob: 7cc10b5c33b82d10d0f51701f9c98fdff070cd33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Pound < Formula
  url 'http://www.apsis.ch/pound/Pound-2.5.tgz'
  homepage 'http://www.apsis.ch/pound'
  md5 '8a39f5902094619afcda7d12d9d8342c'

  depends_on 'pcre'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make" # Manual install to get around group issues
    sbin.install ["pound", "poundctl"]
    man8.install ["pound.8", "poundctl.8"]
  end
end