1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
class Trr < Formula
homepage "https://code.google.com/p/trr22/"
url "https://trr22.googlecode.com/files/trr22_0.99-5.tar.gz"
sha256 "6bac2f947839cebde626cdaab0c0879de8f6f6e40bfd7a14ccdfe1a035a3bcc6"
version "22.0.99.5"
depends_on "apel"
depends_on "nkf" => :build
def install
system "make", "clean"
cp Dir["#{Formula["apel"].share}/emacs/site-lisp/*"], 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"].share}/emacs/site-lisp/*.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", "all", "LISPDIR=#{share}/emacs/site-lisp",
"TRRDIR=#{prefix}",
"INFODIR=#{info}",
"BINDIR=#{bin}",
"TEXTS=#{texts}"
system "make", "install", "LISPDIR=#{share}/emacs/site-lisp",
"TRRDIR=#{prefix}",
"INFODIR=#{info}",
"BINDIR=#{bin}",
"TEXTS=#{texts}"
cp Dir["record/*"], "#{prefix}/record/"
end
def caveats; <<-EOF.undent
Please add below lines to your emacs configuration file. (ex. ~/emacs.d/init.el)
(add-to-list 'load-path "#{Formula["apel"].share}/emacs/site-lisp")
(add-to-list 'load-path "#{share}/emacs/site-lisp")
(autoload 'trr "#{share}/emacs/site-lisp/trr" nil t)
EOF
end
test do
program = testpath/"test-trr.el"
program.write <<-EOS.undent
(add-to-list 'load-path "#{Formula["apel"].share}/emacs/site-lisp")
(add-to-list 'load-path "#{share}/emacs/site-lisp")
(require 'trr)
(print (TRR:trainer-menu-buffer))
EOS
assert_equal "\"Type & Menu\"", shell_output("emacs -batch -l #{program}").strip
end
end
|