Skip to content

Commit ed75b35

Browse files
committed
feat: build only command line tool
1 parent 4a13a64 commit ed75b35

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ jobs:
1919
run: |
2020
yum update -y
2121
yum groupinstall "Development Tools" -y
22-
yum install -y tar wget mesa-libGL-devel
22+
yum install -y tar wget
2323
2424
- name: Build MuPDF
25+
# https://mupdf.readthedocs.io/en/latest/quick-start-guide.html
2526
run: |
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
27+
wget https://mupdf.com/downloads/archive/mupdf-1.24.10-source.tar.xz
28+
tar -xf mupdf-1.24.10-source.tar.xz
29+
cd mupdf-1.24.10-source
30+
make HAVE_X11=no HAVE_GLUT=no prefix=/usr/local install
3031
3132
- name: Create the layer
3233
run: |

0 commit comments

Comments
 (0)