Created
February 4, 2016 17:23
-
-
Save myersjustinc/7e28f06971b063ec7dd1 to your computer and use it in GitHub Desktop.
tabula-java Homebrew formula
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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