Skip to content

Instantly share code, notes, and snippets.

@kshahkshah
Created February 11, 2010 18:14
Show Gist options
  • Save kshahkshah/301775 to your computer and use it in GitHub Desktop.
Save kshahkshah/301775 to your computer and use it in GitHub Desktop.
require 'formula'
class Htmldoc <Formula
url 'http://ftp.easysw.com/pub/htmldoc/snapshots/htmldoc-1.9.x-r1629.tar.bz2'
homepage 'http://www.htmldoc.org/'
md5 'a5982321cadbadaef9ec59c10733b9df'
depends_on 'jpeg'
depends_on 'libpng'
def install
system "./configure",
"--disable-debug",
"--without-gui",
"--prefix=#{prefix}",
"--exec-prefix=#{prefix}",
"--mandir=#{man}",
"--sbindir=#{prefix}/bin",
"--libexecdir=#{prefix}/bin"
system "make"
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment