LoginSignup
1
1

More than 5 years have passed since last update.

mewのFormulaを作成しました

Posted at
mew.rb
require 'formula'

class Mew < Formula
  homepage "http://www.mew.org/"
  url "http://www.mew.org/Release/mew-6.6.tar.gz"
  sha1 "3ba1bac6ed9a7a6a85d61b5946418914912063f3"
  head "http://github.com/kazu-yamamoto/Mew.git"

  depends_on "emacs"

  def install
    system "./configure", "--prefix=#{prefix}", "--with-emacs=/usr/local/bin/emacs"
    system "make install"
  end
end

同様にEmacs LispパッケージのFormulaを作成したいと思った方は、Emacs LispパッケージのFormulaをつくるときの注意もご覧ください。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1