mirror of
https://github.com/sched-ext/scx.git
synced 2024-11-25 12:10:24 +00:00
a7fa651bfc
Signed-off-by: Peter Jung <admin@ptr1337.dev>
29 lines
846 B
Bash
Executable File
29 lines
846 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for manifest in "$MESON_SOURCE_ROOT"/scheds/rust/*/Cargo.toml; do
|
|
source_dir="${manifest%/Cargo.toml}"
|
|
target_dir="${MESON_BUILD_ROOT}${source_dir#${MESON_SOURCE_ROOT}}"
|
|
name="${target_dir##*/}"
|
|
|
|
# Skip scx_mitosis
|
|
if [ "$name" = "scx_mitosis" ]; then
|
|
echo "Skipping installation of $name"
|
|
continue
|
|
fi
|
|
|
|
bins=($(ls -t "${target_dir}/"*"/${name}"))
|
|
if [ ${#bins[@]} -lt 1 ]; then
|
|
echo "Cannot find a binary for $name under $target_dir" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
# XXX - Can we detect the current buildtype and install the correct one?
|
|
if [ ${#bins[@]} -gt 1 ]; then
|
|
echo "Found multiple binaries for $name under $target_dir, installing the latest which may not be what you want" 1>&2
|
|
fi
|
|
|
|
install -D "${bins[0]}" "${DESTDIR}/${MESON_INSTALL_PREFIX}/bin/${name}"
|
|
done
|