mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
19 lines
577 B
Bash
Executable file
19 lines
577 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='ninja'
|
|
version='1.11.0'
|
|
files=(
|
|
"https://github.com/ninja-build/ninja/archive/v${version}.tar.gz 3c6ba2e66400fe3f1ae83deb4b235faf3137ec20bd5b08c29bfc368db143e4c6"
|
|
)
|
|
|
|
build() {
|
|
CXXFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
|
LDFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
|
# platform=linux is close enough.
|
|
run ./configure.py --bootstrap --platform='linux'
|
|
run strip ninja
|
|
}
|
|
|
|
install() {
|
|
run mkdir -p "${SERENITY_INSTALL_ROOT}/usr/local/bin"
|
|
run cp ninja "${SERENITY_INSTALL_ROOT}/usr/local/bin"
|
|
}
|