2010-07-17 02:28:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pound < Formula
|
2010-07-17 02:28:00 +00:00
|
|
|
homepage 'http://www.apsis.ch/pound'
|
2012-02-11 04:08:48 +00:00
|
|
|
url 'http://www.apsis.ch/pound/Pound-2.6.tgz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '91ba84c6db579b06dc82fceb790e55e344b1dc40'
|
2010-07-17 02:28:00 +00:00
|
|
|
|
|
|
|
depends_on 'pcre'
|
|
|
|
|
|
|
|
def install
|
2012-02-24 22:51:33 +00:00
|
|
|
# find Homebrew's libpcre
|
|
|
|
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
|
|
|
|
|
2012-02-11 04:08:48 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
# Manual install to get around group issues
|
|
|
|
sbin.install "pound", "poundctl"
|
|
|
|
man8.install "pound.8", "poundctl.8"
|
2010-07-17 02:28:00 +00:00
|
|
|
end
|
|
|
|
end
|