aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2009-12-11 09:41:23 -0800
committerMax Howell2009-12-17 19:17:50 +0000
commit1e40cb1437e54cafa85e1d00bf16e15724dc4e41 (patch)
tree859cea3fafcb706ab757a2218fe790d472a3e9b6 /Library/Formula
parentd24d4fd44916ea1b96fc8f9bec74b241627afea7 (diff)
downloadhomebrew-1e40cb1437e54cafa85e1d00bf16e15724dc4e41.tar.bz2
Update Lighttpd to 1.4.25
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lighttpd.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/Library/Formula/lighttpd.rb b/Library/Formula/lighttpd.rb
index fa3170e11..76dcab731 100644
--- a/Library/Formula/lighttpd.rb
+++ b/Library/Formula/lighttpd.rb
@@ -1,14 +1,17 @@
require 'formula'
class Lighttpd <Formula
- @url='http://www.lighttpd.net/download/lighttpd-1.4.23.tar.bz2'
- @homepage='http://www.lighttpd.net/'
- @md5='0ab6bb7b17bf0f515ce7dce68e5e215a'
+ url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.25.tar.bz2'
+ md5 '2027c49fb46530e45338c5e2da13c02f'
+ homepage 'http://www.lighttpd.net/'
- depends_on :pcre
+ depends_on 'pkg-config'
+ depends_on 'pcre'
def install
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--with-openssl", "--with-ldap"
+ args = ["--prefix=#{prefix}", "--disable-dependency-tracking",
+ "--with-openssl", "--with-ldap"]
+ system "./configure", *args
system "make install"
end
end