homebrew-core/Formula/pdf2htmlex.rb
Jamie Ly 948122dbaa pdf2htmlex 0.6
Closes Homebrew/homebrew#17427.
Closes Homebrew/homebrew#15030.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-01 09:46:39 -08:00

26 lines
711 B
Ruby

require 'formula'
class Pdf2htmlex < Formula
homepage 'http://coolwanglu.github.com/pdf2htmlEX/'
url 'https://github.com/coolwanglu/pdf2htmlEX/archive/v0.6.tar.gz'
sha1 '3b824e007e48130ccacb7372fb98658990e402fd'
head 'https://github.com/coolwanglu/pdf2htmlEX.git'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'fontforge'
depends_on 'poppler'
depends_on 'ttfautohint' => :recommended
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
test do
curl "-O", "http://partners.adobe.com/public/developer/en/xml/AdobeXMLFormsSamples.pdf"
system "#{bin}/pdf2htmlEX", "AdobeXMLFormsSamples.pdf"
end
end