mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 17:59:24 +02:00
7 lines
409 B
Bash
Executable file
7 lines
409 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
cargo build --release --no-default-features --features alsa-backend
|
|
cargo build --release --target aarch64-unknown-linux-gnu --no-default-features --features alsa-backend
|
|
cargo build --release --target arm-unknown-linux-gnueabihf --no-default-features --features alsa-backend
|
|
cargo build --release --target arm-unknown-linux-gnueabi --no-default-features --features alsa-backend
|