1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
setenv CFLAGS -fPIC
# install the pre-required tool
pkg install swig30
# Ensure we have a build of the current version
wget https://mupdf.com/downloads/archive/mupdf-1.17.0-source.tar.gz
tar -zxvf mupdf-1.17.0-source.tar.gz
rm -rf PyMuPDF
git clone https://github.com/pymupdf/PyMuPDF.git
cd mupdf-1.17.0-source
# replace files in mupdf source
cp ../PyMuPDF/fitz/_config.h include/mupdf/fitz/config.h
gmake HAVE_X11=no HAVE_GLFW=no HAVE_GLUT=no prefix=/usr/local
gmake HAVE_X11=no HAVE_GLFW=no HAVE_GLUT=no prefix=/usr/local install
cd ../PyMuPDF
python setup.py build
python setup.py install
|