73 lines
2.4 KiB
Ruby
73 lines
2.4 KiB
Ruby
class Magit < Formula
|
|
desc "Emacs interface for Git"
|
|
homepage "https://github.com/magit/magit"
|
|
|
|
stable do
|
|
url "https://github.com/magit/magit/archive/1.4.2.tar.gz"
|
|
sha256 "460040e32a47a04222ea3bc3f78434308d8b0c6e82b03bfe3e6579068c54a2ab"
|
|
|
|
depends_on :emacs => "23.2"
|
|
|
|
resource "git-commit-mode" do
|
|
url "https://github.com/magit/git-modes/raw/3423997a89f63eb4c8a4ce495928bc5951767932/git-commit-mode.el"
|
|
sha256 "ed33f324e46ab81232bed5c38c4f8f794bd689f58aa49e98e386b628182b32e0"
|
|
end
|
|
|
|
resource "git-rebase-mode" do
|
|
url "https://github.com/magit/git-modes/raw/3423997a89f63eb4c8a4ce495928bc5951767932/git-rebase-mode.el"
|
|
sha256 "21670e2dcabadc18f2c2caff9b97d7affe1697a64d522a40fce6d8f1f5cd5ea5"
|
|
end
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/magit/magit.git", :branch => "next"
|
|
|
|
depends_on :emacs => "24.4"
|
|
|
|
resource "dash" do
|
|
url "http://melpa.org/packages/dash-20150611.922.el"
|
|
sha256 "9a4de6d5adf5a976c4bca3d6c8ac653ba8c859b23e01b4e38e27820104c43043"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "cfbba4c7e7332fba7b60cf9484ae7979cf08e8d625545f924ececbeaa12418f6" => :yosemite
|
|
sha256 "1ac752b649d17f26ff5ddf965d7125895455aeb069267295a4966528be5b9764" => :mavericks
|
|
sha256 "c528977bcfef51e5a93e52b68ece520973be1aaa0d8a44f5adda7c99bcfc87b0" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
if build.stable?
|
|
buildpath.install resource("git-commit-mode"),
|
|
resource("git-rebase-mode")
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
(share/"emacs/site-lisp").install "git-commit-mode.el",
|
|
"git-rebase-mode.el"
|
|
else
|
|
# Can't run `make install` alone without ENV.j1:
|
|
# https://github.com/magit/magit/issues/1670
|
|
system "make"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
resource("dash").stage do
|
|
(share/"emacs/site-lisp").install "dash-20150611.922.el" => "dash.el"
|
|
end
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Add the following to your Emacs init file to allow loading of packages installed by Homebrew:
|
|
|
|
(add-to-list 'load-path "#{HOMEBREW_PREFIX}/share/emacs/site-lisp")
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.el").write <<-EOS.undent
|
|
(add-to-list 'load-path "#{share}/emacs/site-lisp")
|
|
(require 'magit)
|
|
(print (minibuffer-prompt-width))
|
|
EOS
|
|
assert_equal "0", shell_output("emacs -batch -l #{testpath}/test.el").strip
|
|
end
|
|
end
|