mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 06:21:23 +00:00
10 lines
246 B
Bash
10 lines
246 B
Bash
#!/usr/bin/bash
|
|
|
|
# Change dir to the cargo project
|
|
cd "$(dirname "$(realpath "$0")")/.." || exit
|
|
|
|
RUST_TARGET=${1:-"x86_64-unknown-linux-gnu"}
|
|
|
|
bash ./build_scripts/build.sh "$RUST_TARGET"
|
|
cargo install cargo-deb
|
|
cargo deb --target "$RUST_TARGET" |