Skip to content

Instantly share code, notes, and snippets.

@myersjustinc
Created February 4, 2016 17:23
Show Gist options
  • Save myersjustinc/7e28f06971b063ec7dd1 to your computer and use it in GitHub Desktop.
Save myersjustinc/7e28f06971b063ec7dd1 to your computer and use it in GitHub Desktop.
tabula-java Homebrew formula
class TabulaJava < Formula
desc "Text extraction from PDFs, using command-line Tabula core"
homepage "https://github.com/tabulapdf/tabula-java"
version "0.8.0"
head "https://github.com/tabulapdf/tabula-java.git", :revision => "577916327edd480b81604b1df63a9a583b814f5c"
depends_on "maven"
def install
system "mvn", "clean", "compile", "assembly:single"
libexec.install "target", Dir["*.jar"]
bin.write_jar_script libexec/"target/tabula-0.8.0-jar-with-dependencies.jar", "tabula-java"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment