homebrew-core/Formula/epubcheck.rb
DJManas 90b82c1ffa epubcheck 3.0
Closes Homebrew/homebrew#16732.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-12-24 11:03:46 -06:00

13 lines
363 B
Ruby

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