forked from napcs/docbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.rb
124 lines (96 loc) · 3.74 KB
/
make.rb
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
require File.expand_path(File.join(File.dirname(__FILE__), "version"))
require File.expand_path(File.join(File.dirname(__FILE__), "lib/docbook"))
require File.expand_path(File.join(File.dirname(__FILE__), "lib/extensions"))
def header
puts DocbookVersion.to_s
puts "(c) 2010 Brian P. Hogan"
puts "-" * 40
puts "Using buildchain located at: #{DOCBOOK_ROOT}"
puts "Reminder: Nothing builds unless you've made changes to the Docbook file you're building."
puts "-" * 40
puts ""
end
require 'fileutils'
# =========== Actual script starts here ==============
# process the doc.
header
desc "Prepend a cover to your PDF. Cover should be called cover.pdf and stored in the cover/ folder"
task :add_cover => ["book.pdf"] do
cmd = "java -Xss1024K -Xmx512m -cp #{DOCBOOK_ROOT}/jars/Multivalent*.jar tool.pdf.Merge -samedoc cover/cover.pdf book.pdf"
`#{cmd}`
FileUtils.mv("cover/cover-m.pdf", "book_with_cover.pdf")
puts "Created 'book_with_cover.pdf'"
end
desc "clean temporary files"
task :clean do
puts "Removing temporary files"
xml_files = Dir.glob("./**/*.xml")
%w{pdf html txt rtf epub xhtml chm}.each do |ext|
f = xml_files.collect{|a| a.gsub(".xml", ".#{ext}")}
f.each{|item| puts "Removing #{item}" if File.exist?(item)}
FileUtils.rm_rf(f)
end
end
rule /.pdf|.html|.txt|.rtf|.epub|.xhtml|.chm/ => ".xml" do |t|
file_and_target = t.name.split(".")
validate = ENV["VALIDATE"] != "false"
draft = ENV["DRAFT"] == "true"
debug = ENV["DEBUG"] == "true"
file = file_and_target[0]
target = file_and_target[1]
ENV["SOURCE_FILENAME"] = file + ".xml"
ENV["TEMP_FILE"] = file + ".tmp"
ENV["TEMP_FILENAME"] = ENV["TEMP_FILE"] + ".xml"
ENV["OUTPUT_FILENAME"] = t.name
ENV["FORMAT"] = target
FileUtils.cp ENV["SOURCE_FILENAME"], ENV["TEMP_FILENAME"]
Rake::Task["preprocess"].invoke
klass = "Docbook/#{target}".constantize
book = klass.new(:root => DOCBOOK_ROOT, :file => ENV["TEMP_FILE"], :validate => validate, :draft => draft, :debug => debug)
if book.render
puts "Completed building #{t.name}"
Rake::Task["preprocess"].invoke
FileUtils.mv ENV["TEMP_FILE"] + ".#{target}", t.name
else
puts "#{t.name} not rendered."
end
FileUtils.rm ENV["TEMP_FILENAME"] if File.exist?(ENV["TEMP_FILENAME"])
end
task :preprocess do
puts "Running preprocessing tasks"
end
task :postprocess do
puts "Running postprocessing tasks"
end
task :default => [:build]
task :build do
if File.exists?("book.txt")
puts "Running asciidoc converter for book.txt"
FileUtils.touch("book.txt")
`asciidoc --doctype=book --backend=docbook --out-file=book.xml book.txt`
elsif File.exists?("article.txt")
di = File.exists?("article-docinfo.xml") ? "--attribute=docinfo " : ""
puts "Running asciidoc converter for article.txt"
FileUtils.touch("article.txt")
`asciidoc -v --doctype=article --backend=docbook #{di} --out-file=article.xml article.txt`
end
if File.exists?("book.xml")
FileUtils.touch "book.xml"
Rake::Task["book.pdf"].invoke
elsif File.exists?("article.xml")
`touch article.xml`
Rake::Task["article.pdf"].invoke
end
end
desc "Shows instructions for building."
task :help do
puts "Build books with 'rake filename.pdf' or 'rake filename.html'"
end
desc "Grabs callout images from #{DOCBOOK_ROOT}/xsl/images. You should really not use these for production, as they are terrible quality."
task :callout_images do
FileUtils.cp_r(DOCBOOK_ROOT + "/xsl/images/", ".")
puts "Images copied. They're awful though, so you're probably better off replacing each one with your own."
end
file "book.pdf" => FileList['**/*.xml'] - ["book.xml"]
# load user extensions *after* our own
load ENV["HOME"] + "/.docbook_rakefile" if File.exists?(ENV["HOME"] + "/.docbook_rakefile")