-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtexjpbuild.sh
executable file
·68 lines (66 loc) · 1.66 KB
/
texjpbuild.sh
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
#!/bin/sh -x
# making working directory to build targets.
cd source && mkdir -p Work && cd Work
########################################
# configure && make && make install, and run tests
# on build source top directory.
# in web2c, we only make:
# e(u)ptex, (u)pmpost, cweave, tie, and (c)tangle.
# [NOTE] We build "raw" etex, which is disabled in TL.
# [TODO] How to build omegaware and omegafonts?
../Build --no-clean \
--disable-all-pkgs \
--enable-debug \
--enable-dvi2tty \
--enable-dviout-util \
--enable-dvipdfm-x \
--enable-dvipsk \
--enable-makejvf \
--enable-mendexk \
--enable-upmendex \
--enable-dvidvi \
--enable-seetexk \
--enable-web2c \
--enable-etex \
--enable-euptex \
--enable-pmp \
--enable-upmp \
--enable-web-progs \
--enable-bibtex-x \
--disable-tex \
--disable-mf \
--disable-mflua \
--disable-mfluajit \
--disable-mp \
--disable-luatex \
--disable-luajittex \
--disable-luahbtex \
--disable-luajithbtex \
--disable-pdftex \
--disable-xetex \
--disable-hitex \
--disable-aleph \
--without-mf-x-toolkit \
--with-gnu-ld \
--without-x \
--without-system-kpathsea \
--without-system-ptexenc \
--without-system-zlib \
--without-system-libpaper \
--without-system-libpng \
--without-system-freetype2 \
--without-system-gd \
--without-system-pixman \
--without-system-cairo \
--without-system-gmp \
--without-system-mpfi \
--without-system-mpfr \
--without-system-poppler \
--without-system-xpdf \
--without-system-zziplib \
--without-system-graphite2 \
--without-system-teckit \
--without-system-icu \
--without-system-harfbuzz \
--disable-xpdfopen \
CFLAGS=-g CXXFLAGS=-g