Skip to content

Instantly share code, notes, and snippets.

@sharl
Created October 20, 2011 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharl/1300746 to your computer and use it in GitHub Desktop.
Save sharl/1300746 to your computer and use it in GitHub Desktop.
lynx-dev brew formula
require 'formula'
class LynxDev < Formula
url 'http://lynx.isc.org/current/lynx2.8.8dev.9.tar.bz2'
homepage 'http://lynx.isc.org/current/'
md5 '35c4dfbacfd3c7024e2da079cd3e46ea'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-echo",
"--with-zlib",
"--with-bzlib",
"--with-ssl",
"--enable-ipv6"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment