add libjpeg-turbo package (#15)

Vendors libjpeg-turbo 3.1.0 as a static library for openpilot, following
the same pattern as zstd/ncurses/zeromq.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Adeeb Shihadeh
2026-02-24 10:09:19 -08:00
committed by GitHub
parent 2377af3f1f
commit 6fe17e7b31
4 changed files with 142 additions and 0 deletions

15
libjpeg/pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "libjpeg"
version = "3.1.0"
description = "libjpeg-turbo JPEG library (static build)"
requires-python = ">=3.8"
[tool.setuptools.packages.find]
include = ["libjpeg*"]
[tool.setuptools.package-data]
libjpeg = ["install/**/*"]