diff --git a/info.yml b/info.yml index 99c1e9f..759bafd 100644 --- a/info.yml +++ b/info.yml @@ -1,7 +1,7 @@ name: mupdf description: Lightweight PDF and XPS viewer version: 1.27.2 -revision: 3 +revision: 4 url: https://mupdf.com/ license: AGPL3-or-later maintainers: @@ -26,6 +26,7 @@ make_depends: - openjpeg - openssl - swig + - tesseract - zint - zlib - zxing-cpp @@ -73,4 +74,5 @@ split_packages: - leptonica - libjpeg-turbo - openjpeg + - tesseract - zlib diff --git a/recipe.sh b/recipe.sh index 03340b4..e123b62 100644 --- a/recipe.sh +++ b/recipe.sh @@ -11,7 +11,10 @@ prepare() { cat > user.make <<-EOF LINUX_OR_OPENBSD := yes USE_SYSTEM_LIBS := yes +USE_SYSTEM_CURL := yes USE_SYSTEM_FREETYPE := yes +USE_SYSTEM_GLUT := yes +USE_SYSTEM_GUMBO := no USE_SYSTEM_HARFBUZZ := yes USE_SYSTEM_JBIG2DEC := yes USE_SYSTEM_JPEGXR := yes @@ -20,11 +23,10 @@ USE_SYSTEM_LEPTONICA := yes USE_SYSTEM_LIBJPEG := yes USE_SYSTEM_MUJS := no USE_SYSTEM_OPENJPEG := yes +USE_SYSTEM_TESSERACT := yes USE_SYSTEM_ZLIB := yes -USE_SYSTEM_GLUT := yes -USE_SYSTEM_CURL := yes -USE_SYSTEM_GUMBO := no USE_SYSTEM_ZXINGCPP := yes +USE_TESSERACT := yes EOF }