From fd5b8132aebb66dac8fcf31f871887b993dcaabc Mon Sep 17 00:00:00 2001 From: Stuart Henderson Date: Mon, 18 Aug 2025 20:49:21 +0100 Subject: [PATCH] add OpenBSD info to readme (#1554) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index f9cbada2..761bd6fa 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ Linux, Windows, macOS and FreeBSD are supported. Docker images are also availabl | macOS (nix) | ``nix-env -i ocrmypdf`` | | LinuxBrew | ``brew install ocrmypdf`` | | FreeBSD | ``pkg install py-ocrmypdf`` | +| OpenBSD | ``pkg_add ocrmypdf`` | | Ubuntu Snap | ``snap install ocrmypdf`` | For everyone else, [see our documentation](https://ocrmypdf.readthedocs.io/en/latest/installation.html) for installation steps. @@ -92,6 +93,10 @@ apt-get install tesseract-ocr-chi-sim # Example: Install Chinese Simplified lan # Arch Linux users pacman -S tesseract-data-eng tesseract-data-deu # Example: Install the English and German language packs +# OpenBSD users +pkg_info -aQ tesseract # Display a list of all Tesseract language packs +pkg_add tesseract-cym # Example: Install the Welsh language pack + # brew macOS users brew install tesseract-lang ```