mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-27 05:05:32 +03:00
938924f36d
install-ports copys the necessary files from Ports/ to /usr/Ports. Also refactor the compiler and destiation variables from .port_include.sh into .hosted_defs.sh. .hosted_defs.sh does not exists when ports are built in serenity
11 lines
387 B
Bash
Executable File
11 lines
387 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SERENITY_PORTS_DIR="${SERENITY_ROOT}/Build/${SERENITY_ARCH}/Root/usr/Ports"
|
|
|
|
for file in $(git ls-files "${SERENITY_ROOT}/Ports"); do
|
|
if [ "$(basename "$file")" != ".hosted_defs.sh" ]; then
|
|
target=${SERENITY_PORTS_DIR}/$(realpath --relative-to="${SERENITY_ROOT}/Ports" "$file")
|
|
mkdir -p "$(dirname "$target")" && cp "$file" "$target"
|
|
fi
|
|
done
|