nfstream/pyproject.toml
2025-11-17 09:41:45 +01:00

13 lines
No EOL
729 B
TOML

[tool.cibuildwheel.linux]
before-all = """
yum -y update && yum -y groupinstall 'Development tools' && \
yum -y install git m4 pkgconfig autogen gcc-c++ autoconf libtool-ltdl glib2-devel automake libtool gettext json-c-devel libusbx-devel dbus-glib-devel bluez-libs-devel libnl3-devel flex bison && \
install -d "$(aclocal --print-ac-dir)" && cp /usr/share/aclocal/pkg.m4 "$(aclocal --print-ac-dir)/"
"""
[[tool.cibuildwheel.overrides]]
select = "*-musllinux*"
before-all = """
apk add --no-cache autoconf automake libtool pkgconfig gettext json-c-dev libusb-dev dbus-glib-dev bluez-libs bluez-dev libnl3-dev flex bison && \
install -d "$(aclocal --print-ac-dir)" && cp /usr/share/aclocal/pkg.m4 "$(aclocal --print-ac-dir)/"
"""