mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-15 13:21:37 +00:00
81ca9ca3a3
display a custom and clean about dialog with the infrastructure based on meson to genetate the config.rs
9 lines
237 B
Bash
9 lines
237 B
Bash
#!/bin/sh
|
|
export SOURCE_ROOT="$1"
|
|
export DIST="$2"
|
|
|
|
cd "$SOURCE_ROOT"
|
|
mkdir "$DIST"/.cargo
|
|
cargo vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > $DIST/.cargo/config
|
|
# Move vendor into dist tarball directory
|
|
mv vendor "$DIST"
|