From 6d085c55b6f323b64283fa40ccc3ec29614e3052 Mon Sep 17 00:00:00 2001 From: Saeed Rasooli Date: Mon, 21 Oct 2024 19:36:02 +0330 Subject: [PATCH] setup.py: add FreeBSD --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 81d9114..51936a6 100755 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ class Config: "Linux": ["x86_64", "aarch64"], "Linux-musl": ["x86_64", "aarch64"], "Windows": ["amd64"], + "FreeBSD": ["amd64"], } base_dir: pathlib.Path = Path(__file__).parent @@ -133,6 +134,7 @@ def libzim_fname(self): "Darwin": f"libzim.{self.libzim_major}.dylib", "Linux": f"libzim.so.{self.libzim_major}", "Windows": f"zim-{self.libzim_major}.dll", + "FreeBSD": f"libzim.so.{self.libzim_major}", }[self.platform] @property