We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a13a64 commit ed75b35Copy full SHA for ed75b35
.github/workflows/build.yml
@@ -19,14 +19,15 @@ jobs:
19
run: |
20
yum update -y
21
yum groupinstall "Development Tools" -y
22
- yum install -y tar wget mesa-libGL-devel
+ yum install -y tar wget
23
24
- name: Build MuPDF
25
+ # https://mupdf.readthedocs.io/en/latest/quick-start-guide.html
26
- wget https://mupdf.com/downloads/archive/mupdf-1.19.0-source.tar.xz
27
- tar -xf mupdf-1.19.0-source.tar.xz
28
- cd mupdf-1.19.0-source
29
- make build=release
+ wget https://mupdf.com/downloads/archive/mupdf-1.24.10-source.tar.xz
+ tar -xf mupdf-1.24.10-source.tar.xz
+ cd mupdf-1.24.10-source
30
+ make HAVE_X11=no HAVE_GLUT=no prefix=/usr/local install
31
32
- name: Create the layer
33
0 commit comments