homebrew-core/Formula/epubcheck.rb
Petr Šourek d6f88c1f6c epubcheck 3.0.1
Closes Homebrew/homebrew#20133.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-29 10:00:15 -07:00

13 lines
365 B
Ruby

require 'formula'
class Epubcheck < Formula
homepage 'http://code.google.com/p/epubcheck/'
url 'http://epubcheck.googlecode.com/files/epubcheck-3.0.1.zip'
sha1 '80a61fb2817ec547d292362793da5b91dbef92e3'
def install
jarname = "epubcheck-#{version}.jar"
libexec.install jarname, "lib"
bin.write_jar_script libexec/jarname, 'epubcheck'
end
end