pound 2.6
This commit is contained in:
parent
c0f6111921
commit
7c51a76f42
1 changed files with 7 additions and 6 deletions
|
@ -1,16 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Pound < Formula
|
||||
url 'http://www.apsis.ch/pound/Pound-2.5.tgz'
|
||||
homepage 'http://www.apsis.ch/pound'
|
||||
md5 '8a39f5902094619afcda7d12d9d8342c'
|
||||
url 'http://www.apsis.ch/pound/Pound-2.6.tgz'
|
||||
md5 '8c913b527332694943c4c67c8f152071'
|
||||
|
||||
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"]
|
||||
system "./configure", "--prefix=#{prefix}"
|
||||
system "make"
|
||||
# Manual install to get around group issues
|
||||
sbin.install "pound", "poundctl"
|
||||
man8.install "pound.8", "poundctl.8"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue