Skip to content

Instantly share code, notes, and snippets.

@kyoma-
Forked from ushiushix/mew.rb
Last active September 13, 2021 07:17
Show Gist options
  • Save kyoma-/7957008 to your computer and use it in GitHub Desktop.
Save kyoma-/7957008 to your computer and use it in GitHub Desktop.
# https://docs.brew.sh/Adding-Software-to-Homebrew
# brew create https://mew.org/Release/mew-6.7.tar.gz
# brew install --build-from-source mew
class Mew < Formula
homepage "https://mew.org"
url "https://mew.org/Release/mew-6.7.tar.gz"
sha256 "7e801f53feb37a1d1b755c1e5ce67cf865bb96be42dfc5487f7b9c3f859fdf0d"
def install
system "./configure", *std_configure_args, "--disable-silent-rules"
system "make", "install"
system "make", "install-info"
system "make", "install-jinfo"
end
test do
system "mewl", "-v"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment