homebrew-core/Formula/pdftohtml.rb

15 lines
418 B
Ruby
Raw Normal View History

require 'formula'
2009-09-09 22:32:19 +00:00
2011-03-10 05:11:03 +00:00
class Pdftohtml < Formula
homepage 'http://pdftohtml.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/pdftohtml/Experimental%20Versions/pdftohtml%200.40/pdftohtml-0.40a.tar.gz'
sha1 '409572da65cf5234d026a5b199a81a26e75ca4d8'
2009-09-09 22:32:19 +00:00
conflicts_with 'poppler', :because => 'both install `pdftohtml` binaries'
2013-11-13 04:50:13 +00:00
2009-09-09 22:32:19 +00:00
def install
system "make"
2009-09-10 19:11:55 +00:00
bin.install "src/pdftohtml"
2009-09-09 22:32:19 +00:00
end
end