Skip to content

Instantly share code, notes, and snippets.

@kyoma-
Last active June 15, 2021 00:35
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-/7957133 to your computer and use it in GitHub Desktop.
Save kyoma-/7957133 to your computer and use it in GitHub Desktop.
# https://docs.brew.sh/Adding-Software-to-Homebrew
# brew create http://emacs-w3m.namazu.org/emacs-w3m-1.4.4.tar.gz
# brew install --build-from-source emacs-w3m
class EmacsW3m < Formula
homepage "http://emacs-w3m.namazu.org"
url "http://emacs-w3m.namazu.org/emacs-w3m-1.4.4.tar.gz"
sha256 "a3e5e8374f7cfcedd5107feec84659248aad52fa302dec1e85f48529e71c77a4"
depends_on "w3m"
def install
system "./configure", *std_configure_args, "--disable-silent-rules"
system "make", "install"
end
test do
system "false"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment