1 # builds "hard" prerequisites and llpp
5 while getopts j
: opt
; do
9 printf "usage: $0 [-j N] [opt]\n";
19 lablgl
=http
://wwwfun.kurims.kyoto-u.ac.jp
/soft
/lsl
/dist
/lablgl-1.04.
tar.gz
20 mupdf
=git
://git.ghostscript.com
/mupdf.git
21 mupdf3p
=http
://mupdf.com
/download
/mupdf-thirdparty-2012-01-27.
zip
22 mupdfrev
=7d181099272d9c0e92c4488ceaa95b0d8bd10f1e
24 test -d lablGL-1.04 ||
(wget
-nc $lablgl && tar -xzf lablgl-1.04.
tar.gz
)
25 if ! test -f mupdf-
$mupdfrev.tgz
; then
27 "http://git.ghostscript.com/?p=mupdf.git;a=snapshot;h=$mupdfrev;sf=tgz" \
28 -O mupdf-
$mupdfrev.tgz
29 tar xfz mupdf-
$mupdfrev.tgz
32 test -d mupdf
/thirdparty || \
33 (wget
-nc $mupdf3p && unzip -d mupdf $
(basename $mupdf3p))
35 make=$
(gmake
-v >/dev
/null
2>&1 && echo gmake ||
echo make)
38 && cat Makefile.config.linux.mdk
> Makefile.config \
39 && $make glut glutopt \
42 LIBDIR
=$root/lib
/ocaml \
43 DLLDIR
=$root/lib
/ocaml
/stublibs \
44 INSTALLDIR
=$root/lib
/ocaml
/lablGL
)
46 (cd mupdf
&& $make -j "$jobs" build
=release
)
52 sh mkhelp.sh
$srcpath/keystoml.ml
$srcpath/KEYS
> help.ml
54 tp
=$root/mupdf
/thirdparty
57 ccopt
="$ccopt -I $tp/jbig2dec"
58 ccopt
="$ccopt -I $tp/jpeg-8d"
59 ccopt
="$ccopt -I $tp/freetype-2.4.8/include"
60 ccopt
="$ccopt -I $tp/openjpeg-1.4/libopenjpeg"
61 ccopt
="$ccopt -I $tp/zlib-1.2.5"
62 ccopt
="$ccopt -I $root/mupdf/fitz -I $root/mupdf/pdf -I $root/mupdf/xps"
63 ccopt
="$ccopt -I $root/mupdf/cbz"
65 ccopt
="$ccopt -include ft2build.h -D_GNU_SOURCE"
67 cclib
="$cclib -L$root/mupdf/build/release"
69 cclib
="$cclib -lz -ljpeg -lopenjpeg -ljbig2dec -lfreetype"
73 if test "$1" = "opt"; then
74 cclib
="$cclib -lpthread"
75 ocamlopt
-c -o link.o
-ccopt "$ccopt" $srcpath/link.c
76 ocamlopt
-c -o help.cmx
help.ml
77 ocamlopt
-c -o parser.cmx
$srcpath/parser.ml
78 ocamlopt
-c -o main.cmx
-I $root/lib
/ocaml
/lablGL
$srcpath/main.ml
81 -I $root/lib
/ocaml
/lablGL \
82 str.cmxa unix.cmxa lablgl.cmxa lablglut.cmxa \
89 ocamlc
-c -o link.o
-ccopt "$ccopt" $srcpath/link.c
90 ocamlc
-c -o help.cmo
help.ml
91 ocamlc
-c -o parser.cmo
$srcpath/parser.ml
92 ocamlc
-c -o main.cmo
-I $root/lib
/ocaml
/lablGL
$srcpath/main.ml
94 ocamlc
-custom -o llpp \
95 -I $root/lib
/ocaml
/lablGL \
96 str.cma unix.cma lablgl.cma lablglut.cma \