Skip to content

Instantly share code, notes, and snippets.

@Kamek
Created September 20, 2012 21:22
Show Gist options
  • Save Kamek/3758431 to your computer and use it in GitHub Desktop.
Save Kamek/3758431 to your computer and use it in GitHub Desktop.
pdf2htmlex brew formula rough draft
require 'formula'
class Pdf2htmlex < Formula
homepage 'https://github.com/coolwanglu/pdf2htmlEX'
head 'https://github.com/coolwanglu/pdf2htmlEX.git'
depends_on 'libpng'
depends_on 'poppler'
depends_on 'fontforge'
depends_on 'cmake' => :build
def install
system "cmake ."
system "make"
bin.install 'pdf2htmlex'
end
def test
system "pdf2htmlex", "--version"
end
end
@jamiely
Copy link

jamiely commented Sep 21, 2012

Hi, sorry, just submitted a formula. See Homebrew/legacy-homebrew#15030 and my gist https://gist.github.com/3758157

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment