Skip to content

Instantly share code, notes, and snippets.

@yocontra
Created October 9, 2012 17:36
Show Gist options
  • Save yocontra/3860231 to your computer and use it in GitHub Desktop.
Save yocontra/3860231 to your computer and use it in GitHub Desktop.
require 'formula'
class Pdf2htmlex < Formula
homepage 'http://coolwanglu.github.com/pdf2htmlEX/'
url 'https://github.com/coolwanglu/pdf2htmlEX/tarball/master'
head 'https://github.com/coolwanglu/pdf2htmlEX.git'
depends_on 'cmake' => :build
depends_on 'fontforge'
depends_on 'libpng'
depends_on 'poppler'
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
def test
mktemp do
curl "-O", "http://partners.adobe.com/public/developer/en/xml/AdobeXMLFormsSamples.pdf"
system "#{bin}/pdf2htmlEX", "AdobeXMLFormsSamples.pdf"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment