diff options
| author | Jack Nagel | 2014-03-16 19:34:50 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-03-16 19:34:50 -0500 | 
| commit | b858fb3f0da0e283a53ad69c51175b8ab8b989a1 (patch) | |
| tree | 7528e0a8a20bb0a93ff09462ce24f4525643bfc3 /Library/Formula/htmldoc.rb | |
| parent | bc2250bad91ec2c43f86410bbe349b6591baba82 (diff) | |
| download | homebrew-b858fb3f0da0e283a53ad69c51175b8ab8b989a1.tar.bz2 | |
htmldoc 1.8.28
Diffstat (limited to 'Library/Formula/htmldoc.rb')
| -rw-r--r-- | Library/Formula/htmldoc.rb | 19 | 
1 files changed, 7 insertions, 12 deletions
| diff --git a/Library/Formula/htmldoc.rb b/Library/Formula/htmldoc.rb index 88bccccec..40ffbdc09 100644 --- a/Library/Formula/htmldoc.rb +++ b/Library/Formula/htmldoc.rb @@ -1,23 +1,18 @@  require 'formula'  class Htmldoc < Formula -  homepage 'http://www.msweet.org/projects.php?Z1' -  url 'http://www.msweet.org/files/project1/htmldoc-1.8.27-source.tar.bz2' -  sha1 '472908e0aafed1cedfbacd8ed3168734aebdec4b' +  homepage "http://www.msweet.org/projects.php?Z1" +  url "http://www.msweet.org/files/project1/htmldoc-1.8.28-source.tar.bz2" +  sha1 "44ac8b5f116383e9ae44bb1fd7d8caf6e3edf9c2" -  # Fixes building with libpng-1.5, from upstream svn r1668 via Fedora -  # Remove at version 1.8.28. cf. https://github.com/Homebrew/homebrew/issues/15915 -  def patches -    { :p0 => 'http://pkgs.fedoraproject.org/cgit/htmldoc.git/plain/htmldoc-1.8.27-libpng15.patch?h=f18' } -  end +  depends_on "libpng" +  depends_on "jpeg"    def install -    ENV.append_to_cflags "-I#{HOMEBREW_PREFIX}/include" - -    system "./configure", "--disable-debug", "--disable-dependency-tracking", +    system "./configure", "--disable-debug",                            "--prefix=#{prefix}",                            "--mandir=#{man}"      system "make" -    system "make install" +    system "make", "install"    end  end | 
