summaryrefslogtreecommitdiff
path: root/Makefile.scm
blob: 7c0efea6022b671f935270f31c19ffd6d3bb473a (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#|
#!/usr/bin/env sh
exec chibi-scheme -A utils/ $0 $@
|#
(import (chibi)
        (chibi json)
        (only (chibi filesystem)
              directory-files
              create-directory*
              file-directory?)
        (chibi process)
        (only (chibi pathname) path-strip-directory path-extension make-path)
        ;(chibi app)
        (only (chibi string) string-prefix? string-trim-right string-join)
        (prefix (chibi io) io:)
        (utils cover cover)
        (srfi 1)
        (srfi 16)
        (srfi 95))

(define debug #t)

(define (directory-files-not-hidden dir)
  (filter
    (lambda (x) (not (string-prefix? "." x)))
    (directory-files dir)))

(define (directory-sources lang dir)
  (map (lambda (x) (make-path dir lang x))
       (sort (filter
               (lambda (x)
                 (let ((extension (or (path-extension x) "")))
                   (any (lambda (x) (string=? x extension))
                        '("latex" "tex" "md"))))
               (directory-files-not-hidden (make-path dir lang))) string<?)))

(define (directory-meta lang dir)
  (make-path dir lang "Metadata.yaml"))

(define (process->string-or-fail call errmsg)
  (let* ((res (process->output+error+status call))
         (out (first res))
         (err (second res))
         (strcall (string-join call " "))
         (status (third res)))
    (if (= status 0)
        (begin
          (if debug
            (display
              (string-append "\nDEBUG: Called: " strcall "\n" err)
              (current-error-port)))
          out)
        (error (string-append
                 "\n"
                 errmsg
                 "\nIn call: " strcall
                 "\n" err)))))

(define (read-meta file)
  (string->json
    (process->string-or-fail
      `("./utils/yaml2json.py" ,file)
      "Error parsing Metadata file")))

(define (pandoc-web-simple lang output input)
  (let ((outpath  (make-path output lang))
        (files    (directory-sources lang input))
        (metafile (directory-meta lang input)))
    (create-directory* outpath)
    (process->string-or-fail
      (append
        (list
          "pandoc"
          "--to=html"
          "-o" (make-path outpath "web-simple.html")
          "--standalone"
          "--embed-resources"
          ;"--self-contained" ; Old way to do --embed-resources
          "--mathml"
          "--no-highlight"
          "--data-dir=."
          (string-append "--resource-path=" input)
          ; "--base-header-level=2" This is the old way
          "--shift-heading-level-by=-1" ;is the new way
          "--template=web-simple.html"
          "--lua-filter=toc.lua"
          "--lua-filter=anchored-h.lua"
          "--lua-filter=appendixes.lua"
          "--metadata-file" metafile)
        files)
      "Error in web-page creation")))


(define (pandoc-web lang output input)
  (let ((outpath  (make-path output lang))
        (files    (directory-sources lang input))
        (metafile (directory-meta lang input)))
    (create-directory* outpath)
    (process->string-or-fail
      (append
        (list
          "pandoc"
          "--to=html"
          "-o" (make-path outpath "web.html")
          "--standalone"
          "--mathml"
          "--embed-resources"
          ;"--self-contained" ; Old way to do --embed-resources
          ; "--base-header-level=2" This is the old way
          "--shift-heading-level-by=-1" ;is the new way
          "--data-dir=."
          (string-append "--resource-path=./templates/web/:"
                         "./templates:"
                         input)
          "--template=web.html"
          "--lua-filter=toc.lua"
          "--lua-filter=anchored-h.lua"
          "--lua-filter=appendixes.lua"
          "--metadata-file" metafile)
        files)
      "Error in simple web-page creation")))

(define (pandoc-book lang output input)
  (let ((outpath  (make-path output lang))
        (files    (directory-sources lang input))
        (metafile (directory-meta lang input)))
    (create-directory* outpath)
    (process->string-or-fail
      (append
        (list
          "pandoc"
          "-o" (make-path outpath "book.pdf")
          "--standalone"
          "--pdf-engine=xelatex"
          "--data-dir=."
          (string-append "--resource-path=" input)
          "--template=book.latex"
          "--lua-filter=appendixes.lua"
          "--metadata-file" metafile)
        files)
      "Error in book creation")))

(define (pandoc-book-simple lang output input)
  (let ((outpath  (make-path output lang))
        (files    (directory-sources lang input))
        (metafile (directory-meta lang input)))
    (create-directory* outpath)
    (process->string-or-fail
      (append
        (list
          "pandoc"
          "-o" (make-path outpath "book-simple.pdf")
          "--standalone"
          "--pdf-engine=xelatex"
          "--data-dir=."
          (string-append "--resource-path=" input)
          "--template=book-simple.latex"
          "--lua-filter=appendixes.lua"
          "--metadata-file" metafile)
        files)
      "Error in simple book creation")))

(define (pandoc-epub lang output input)
  (let ((outpath  (make-path output lang))
        (files    (directory-sources lang input))
        (metafile (directory-meta lang input)))
    (create-directory* outpath)
    (process->string-or-fail
      (append
        (list
          "pandoc"
          "-o" (make-path outpath "book.epub")
          "--standalone"
          "--data-dir=."
          (string-append "--resource-path=" input)
          "--css=./templates/ebook/epub.css"
          "--template=book.epub"
          "--lua-filter=appendixes.lua"
          "--metadata-file" metafile)
        files)
      "Error in ebook creation")))

(define (make-cover lang output input)
  (let* ((outpath  (make-path output lang))
         (files    (directory-sources lang input))
         (metafile (directory-meta lang input))
         (metadata (read-meta metafile))
         (svg-file (make-path outpath "cover.svg")))
    (create-directory* outpath)
    (call-with-output-file
      svg-file
      (lambda (out)
        (metadata->svg metadata out)))
    (process->string-or-fail
      (append
        `("inkscape"
          "--export-filename" ,(make-path outpath "cover.pdf")
          "--export-type=pdf"
          ,svg-file))
      "Error in cover creation")))

(define (build-lang lang output input)
  (pandoc-web         lang output input)
  (pandoc-web-simple  lang output input)
  (pandoc-book        lang output input)
  (pandoc-book-simple lang output input)
  (pandoc-epub        lang output input)
  (make-cover         lang output input))

(define (get-langs input)
  (filter
    (lambda (l) (and (file-directory? (make-path input l))
                     (= 2 (string-length l))))
    (directory-files-not-hidden input)))

(define (build input)
  (let* ((bookname  (path-strip-directory (string-trim-right input #\/)))
         (output    (make-path "out" bookname)))
    (map (lambda (lang)
           (build-lang lang output input))
         (get-langs input))))




;; RUN THIS LIKE:
;; chibi-scheme Makefile.scm src/BOOK_FOLDER ...
;;
;; It will dump the compiled book to .out/BOOK_FOLDER/LANG/FORMAT.EXT
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(map build (cdr (command-line)))