homebrew-core/Formula/doxymacs.rb

46 lines
1.6 KiB
Ruby

class Doxymacs < Formula
desc "Elisp package for using doxygen under Emacs"
homepage "http://doxymacs.sourceforge.net/"
url "https://downloads.sourceforge.net/project/doxymacs/doxymacs/1.8.0/doxymacs-1.8.0.tar.gz"
sha256 "a23fd833bc3c21ee5387c62597610941e987f9d4372916f996bf6249cc495afa"
bottle do
cellar :any_skip_relocation
sha256 "fb892db831aed57dbdcb2d3a81d78bd05c5b689376d4b7f14bffc56826205ce9" => :el_capitan
sha256 "09eb19921c2ecce5bb02b185c1040caef07d18706866006bdd5fa428bf6b8560" => :yosemite
sha256 "9efc35f7eee0ff431afbd36367676afb608498f823e6094b67d4c86d83694dd4" => :mavericks
sha256 "2a08771aecf0d6475b8f1e3bf9858c13fa190529a1fe1652ad59dc927a141de4" => :mountain_lion
end
head do
url "git://git.code.sf.net/p/doxymacs/code"
depends_on "autoconf" => :build
depends_on "automake" => :build
end
depends_on :emacs => "20.7.1"
depends_on "doxygen"
def install
# https://sourceforge.net/tracker/?func=detail&aid=3577208&group_id=23584&atid=378985
ENV.append "CFLAGS", "-std=gnu89"
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}",
"--with-lispdir=#{elisp}",
"--disable-debug",
"--disable-dependency-tracking"
system "make", "install"
end
test do
(testpath/"test.el").write <<-EOS.undent
(add-to-list 'load-path "#{elisp}")
(load "doxymacs")
(print doxymacs-version)
EOS
output = shell_output("emacs -Q --batch -l #{testpath}/test.el").strip
assert_equal "\"#{version}\"", output
end
end