* build linux wheels inside manylinux_2_28 for glibc 2.28 compat Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * add perl-IPC-Cmd for openssl build in manylinux Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
326 B
Bash
Executable File
11 lines
326 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
brew install nasm pkg-config
|
|
elif command -v dnf &>/dev/null; then
|
|
dnf install -y nasm cmake gcc-c++ pkgconfig git perl-IPC-Cmd
|
|
elif command -v apt-get &>/dev/null; then
|
|
sudo apt-get update && sudo apt-get install -y nasm cmake g++ pkg-config
|
|
fi
|