4c57c4902f
Closes Homebrew/homebrew#44505. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
12 lines
437 B
Ruby
12 lines
437 B
Ruby
class Epubcheck < Formula
|
|
desc "Validate IDPF EPUB files, version 2.0 and later"
|
|
homepage "https://github.com/IDPF/epubcheck"
|
|
url "https://github.com/IDPF/epubcheck/releases/download/v4.0.0/epubcheck-4.0.0.zip"
|
|
sha256 "6a2b73ddbe8aa5a83ee551b73297429daa73156192661ac28c1fbb39fa7edbdc"
|
|
|
|
def install
|
|
jarname = "epubcheck.jar"
|
|
libexec.install jarname, "lib"
|
|
bin.write_jar_script libexec/jarname, "epubcheck"
|
|
end
|
|
end
|