7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
470 B
Ruby
17 lines
470 B
Ruby
require 'formula'
|
|
|
|
class Lighttpd <Formula
|
|
url 'http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.26.tar.bz2'
|
|
md5 'a682c8efce47a2f4263a247ba0813c9b'
|
|
homepage 'http://www.lighttpd.net/'
|
|
|
|
depends_on 'pkg-config'
|
|
depends_on 'pcre'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-openssl", "--with-ldap"
|
|
system "make install"
|
|
end
|
|
end
|