Skip to content

Instantly share code, notes, and snippets.

@kyoma-
Created September 13, 2021 07:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyoma-/39296aa312968683950b1883bae8ad71 to your computer and use it in GitHub Desktop.
Save kyoma-/39296aa312968683950b1883bae8ad71 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.8.tar.gz
# brew install --build-from-source mew
# https://qiita.com/h12o/items/df6f7beded0da0a065f3
class Mew < Formula
homepage "https://mew.org"
url "https://mew.org/Release/mew-6.8.tar.gz"
sha256 "cf44c4f9ca704ba1edce7134bc7f38a17361391d5be1090221431a3a06f6bf47"
def install
system "./configure", *std_configure_args, "--disable-silent-rules", "--with-emacs=/usr/local/bin/emacs"
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