We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c76b7b commit 6d085c5Copy full SHA for 6d085c5
setup.py
@@ -54,6 +54,7 @@ class Config:
54
"Linux": ["x86_64", "aarch64"],
55
"Linux-musl": ["x86_64", "aarch64"],
56
"Windows": ["amd64"],
57
+ "FreeBSD": ["amd64"],
58
}
59
60
base_dir: pathlib.Path = Path(__file__).parent
@@ -133,6 +134,7 @@ def libzim_fname(self):
133
134
"Darwin": f"libzim.{self.libzim_major}.dylib",
135
"Linux": f"libzim.so.{self.libzim_major}",
136
"Windows": f"zim-{self.libzim_major}.dll",
137
+ "FreeBSD": f"libzim.so.{self.libzim_major}",
138
}[self.platform]
139
140
@property
0 commit comments