60 lines
2.2 KiB
Ruby
60 lines
2.2 KiB
Ruby
class Trr < Formula
|
|
desc "Type training program for emacs users"
|
|
homepage "https://code.google.com/archive/p/trr22/"
|
|
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/trr22/trr22_0.99-5.tar.gz"
|
|
version "22.0.99.5"
|
|
sha256 "6bac2f947839cebde626cdaab0c0879de8f6f6e40bfd7a14ccdfe1a035a3bcc6"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "85385ce899c573ebe08ccca03a8993b2ecffb7d064ae9cc85e337ce8462650e5" => :sierra
|
|
sha256 "2b5abc44babd72072cd9303e305d7586574ae65df2c350ca474764dede329035" => :el_capitan
|
|
sha256 "b965ca412e2a97b20bda8afb03fb042fe05f162c6391ea5460e05473c9260ced" => :yosemite
|
|
sha256 "1b24783f3b7060b6c1ac0a9edac5a990fc2bcefcccef9746897a627c912a931f" => :mavericks
|
|
sha256 "2373aaab80559228b2d5510494ba23f22fa6527d6e906ce4c7c6dbc6ff8a9ce4" => :mountain_lion
|
|
end
|
|
|
|
depends_on "nkf" => :build
|
|
depends_on "apel"
|
|
|
|
def install
|
|
system "make", "clean"
|
|
cp Dir["#{Formula["apel"].opt_elisp}/**/*.el"], buildpath
|
|
|
|
# The file "CONTENTS" is firstly encoded to EUC-JP.
|
|
# This encodes it to UTF-8 to avoid garbled characters.
|
|
system "nkf", "-w", "--overwrite", buildpath/"CONTENTS"
|
|
|
|
# wrong text filename
|
|
inreplace buildpath/"CONTENTS", "EmacsLisp", "Elisp_programs"
|
|
|
|
system "make", "clean"
|
|
cp Dir["#{Formula["apel"].opt_elisp}/**/*.elc"], buildpath
|
|
|
|
# texts for playing trr
|
|
texts = "The_Constitution_Of_JAPAN Constitution_of_the_USA Iccad_90 C_programs Elisp_programs Java_programs Ocaml_programs Python_programs"
|
|
|
|
inreplace buildpath/"Makefile", "japanese = t", "japanese = nil"
|
|
|
|
system "make", "install",
|
|
"CC=#{ENV.cc}",
|
|
"TRRDIR=#{prefix}",
|
|
"INFODIR=#{info}",
|
|
"BINDIR=#{bin}",
|
|
"TEXTS=#{texts}",
|
|
"LISPDIR=#{elisp}"
|
|
(prefix/"record").install Dir["record/*"]
|
|
end
|
|
|
|
test do
|
|
program = testpath/"test-trr.el"
|
|
program.write <<-EOS.undent
|
|
(add-to-list 'load-path "#{HOMEBREW_PREFIX}/share/emacs/site-lisp/apel/emu")
|
|
(add-to-list 'load-path "#{elisp}")
|
|
(require 'trr)
|
|
(print (TRR:trainer-menu-buffer))
|
|
EOS
|
|
|
|
assert_equal "\"Type & Menu\"", shell_output("emacs -Q --batch -l #{program}").strip
|
|
end
|
|
end
|