From d76ce54bc2a87bb0520525f34e133fdb02ee7b3e Mon Sep 17 00:00:00 2001 From: Hiromu OCHIAI Date: Tue, 29 Oct 2019 10:46:40 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=A8=E3=82=8A=E3=81=82=E3=81=88=E3=81=9Aho?= =?UTF-8?q?mebrew=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- formula.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 formula.rb 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