2019-09-03 00:07:06 +00:00
|
|
|
#!/bin/sh
|
|
|
|
export DIST="$1"
|
|
|
|
export SOURCE_ROOT="$2"
|
|
|
|
|
|
|
|
cd "$SOURCE_ROOT"
|
|
|
|
mkdir "$DIST"/.cargo
|
2024-07-19 20:34:33 +02:00
|
|
|
# cargo-vendor-filterer can be found at https://github.com/coreos/cargo-vendor-filterer
|
|
|
|
# It is also part of the Rust SDK extension.
|
|
|
|
cargo vendor-filterer --platform=x86_64-unknown-linux-gnu --platform=aarch64-unknown-linux-gnu > "$DIST"/.cargo/config
|
|
|
|
rm -f vendor/gettext-sys/gettext-*.tar.*
|
2024-07-19 22:25:33 +02:00
|
|
|
# remove the tarball from checksums
|
|
|
|
echo $(jq -c 'del(.files["gettext-0.21.tar.xz"])' vendor/gettext-sys/.cargo-checksum.json) > vendor/gettext-sys/.cargo-checksum.json
|
2019-09-03 00:07:06 +00:00
|
|
|
# Move vendor into dist tarball directory
|
|
|
|
mv vendor "$DIST"
|
|
|
|
|