homebrew-core/Formula/pdftohtml.rb

15 lines
417 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/'
2013-01-29 05:03:27 +00:00
url 'http://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
2013-11-13 04:50:13 +00:00
conflicts_with 'poppler', :beacuse => 'both install `pdftohtml` binaries'
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