You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

2 years ago
#! /usr/bin/env sh
2 years ago
exec guile -e main -s "$0" "$@"
2 years ago
!#
2 years ago
(use-modules (bible-tools bible-tools)
(bible-tools latex-export)
(srfi srfi-1)
(srfi srfi-26))
2 years ago
(define (help)
2 years ago
(display "Usage: bible2latex [-b book] [-c chapter]")
2 years ago
(display " [-h] [-v] [--bible b]\n")
2 years ago
(display "\t-b book\t\texport the book to latex\n")
(display "\t-c chapter\texport this chapter to latex\n")
(display "\t-h\t\tdisplay this help message\n")
2 years ago
(display "\t-v\t\tdisplay the current version\n")
(display "\t--bible b use this bible\n"))
2 years ago
(define (main args)
2 years ago
(define version "bible2latex v1.0.0\n")
(define pr (compose display as-latex))
(define flag? (cut member <> args))
(define get (compose cadr flag?))
2 years ago
(let-syntax ((conf
(syntax-rules (else)
((_ (f e)... (else g)) (cond ((flag? f) e)...
(else g))))))
(let ((bible (if (flag? "--bible") (get "--bible") "elb1871")))
(with-bible bible
(conf ("-h" (help))
("-v" (display version))
("-b" (if (flag? "-c")
(call-with-chapter (get "-b")
(get "-c") pr)
(call-with-book (get "-b") pr)))
(else pr))))))