mirror of
https://github.com/Magnus167/msyrs.git
synced 2025-08-20 04:00:01 +00:00
34 lines
843 B
Bash
34 lines
843 B
Bash
#!/bin/bash
|
|
# Exit immediately if a command exits with a non-zero status
|
|
set -e
|
|
|
|
# Run "maturin --help". If it fails, print an error message and exit.
|
|
if ! maturin --help > /dev/null 2>&1; then
|
|
echo "Failed to run maturin --help" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Delete any existing build directory and create a new one.
|
|
rm -rf ./build
|
|
mkdir -p ./build
|
|
|
|
# Copy ./src/msyrs.pyi to ./msyrs.pyi.
|
|
cp ./src/msyrs.pyi ./msyrs.pyi
|
|
|
|
# Build using maturin.
|
|
maturin build --release --sdist --out ./build/
|
|
|
|
# Get the first wheel file found in the build directory.
|
|
whl_file=$(ls ./build/*.whl 2>/dev/null | head -n 1)
|
|
if [ -z "$whl_file" ]; then
|
|
echo "No wheel file found in ./build" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Rename the wheel file from .whl to .zip.
|
|
base_name="${whl_file%.whl}"
|
|
mv "$whl_file" "${base_name}.zip"
|
|
|
|
# Delete the temporary .pyi file.
|
|
rm ./msyrs.pyi
|