2011-11-24 07:44:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Epubcheck < Formula
|
|
|
|
homepage 'http://code.google.com/p/epubcheck/'
|
2012-12-24 16:15:09 +00:00
|
|
|
url 'http://epubcheck.googlecode.com/files/epubcheck-3.0.zip'
|
|
|
|
sha1 'd4064f9c3ce1a82130897301374bc760ed69d55c'
|
2012-07-26 19:45:29 +00:00
|
|
|
|
2011-11-24 07:44:32 +00:00
|
|
|
def install
|
2012-12-24 16:15:09 +00:00
|
|
|
jarname = "epubcheck-#{version}.jar"
|
2012-08-07 18:20:52 +00:00
|
|
|
libexec.install jarname, "lib"
|
|
|
|
bin.write_jar_script libexec/jarname, 'epubcheck'
|
2011-11-24 07:44:32 +00:00
|
|
|
end
|
2012-08-29 16:08:53 +00:00
|
|
|
end
|