diff --git a/formula.rb b/formula.rb new file mode 100644 index 0000000..3b4e769 --- /dev/null +++ b/formula.rb @@ -0,0 +1,16 @@ +# Documentation: https://docs.brew.sh/Formula-Cookbook +# https://rubydoc.brew.sh/Formula +# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! +class Amesh < Formula + desc "みんなだいすき東京アメッシュ!" + homepage "http://tokyo-ame.jwa.or.jp/" + url "https://github.com/otiai10/amesh/releases/download/v1.1.0/darwin_amd64.zip" + sha256 "48eaf42d363324e0ee0dcd4077c2bfe7b78b994ef9aa7edcf7a33e5a5d533fd2" + + def install + bin.install "amesh" + end + + test do + end +end