diff --git a/README.md b/README.md index 8c28ffaf..9078926c 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ Linux, Windows, macOS and FreeBSD are supported. Docker images are also availabl | Windows Subsystem for Linux | ``apt install ocrmypdf`` | | Fedora | ``dnf install ocrmypdf`` | | macOS (Homebrew) | ``brew install ocrmypdf`` | +| macOS (MacPorts) | ``port install ocrmypdf`` | | macOS (nix) | ``nix-env -i ocrmypdf`` | | LinuxBrew | ``brew install ocrmypdf`` | | FreeBSD | ``pkg install py-ocrmypdf`` | diff --git a/docs/installation.rst b/docs/installation.rst index 0a508c96..cb6101fa 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -23,7 +23,9 @@ These platforms have one-liner installs: +-------------------------------+-----------------------------------------+ | Fedora | ``dnf install ocrmypdf tesseract-osd`` | +-------------------------------+-----------------------------------------+ -| macOS | ``brew install ocrmypdf`` | +| macOS (Homebrew) | ``brew install ocrmypdf`` | ++-------------------------------+-----------------------------------------+ +| macOS (MacPorts) | ``port install ocrmypdf`` | +-------------------------------+-----------------------------------------+ | LinuxBrew | ``brew install ocrmypdf`` | +-------------------------------+-----------------------------------------+ @@ -325,6 +327,22 @@ languages you can optionally install them all: brew install tesseract-lang # Optional: Install all language packs +MacPorts +-------- + +.. image:: https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fports.macports.org%2Fapi%2Fv1%2Fports%2Focrmypdf%2F%3Fformat%3Djson&query=version&label=MacPorts + :alt: Macports Version Information + :target: https://ports.macports.org/port/ocrmypdf + +OCRmyPDF is includes in MacPorts: + +.. code-block:: bash + + sudo port install ocrmypdf + +Note that while this will install tesseract you will need to install +the appropriate tesseract `language ports `__. + Manual installation on macOS ---------------------------- diff --git a/pyproject.toml b/pyproject.toml index d3a10369..1d34ce50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ test = [ "types-Pillow", "types-humanfriendly", ] -watcher = ["watchdog>=1.0.2", "typer[all]", "python-dotenv"] +watcher = ["watchdog>=1.0.2", "typer-slim[standard]", "python-dotenv"] webservice = ["Flask>=2.0.1"] [project.scripts]