mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:37:46 +00:00
Ports/ninja: Update ninja to version 1.11.0
This commit is contained in:
parent
41390c9da8
commit
efa9b7d9a1
2 changed files with 7 additions and 7 deletions
|
@ -155,7 +155,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
|
||||||
| [`neofetch`](neofetch/) | neofetch | 7.1.0 | https://github.com/dylanaraps/neofetch |
|
| [`neofetch`](neofetch/) | neofetch | 7.1.0 | https://github.com/dylanaraps/neofetch |
|
||||||
| [`nesalizer`](nesalizer/) | Nesalizer | 5bb0458 | https://github.com/ulfalizer/nesalizer |
|
| [`nesalizer`](nesalizer/) | Nesalizer | 5bb0458 | https://github.com/ulfalizer/nesalizer |
|
||||||
| [`nethack`](nethack/) | nethack | 3.6.6 | https://www.nethack.org/ |
|
| [`nethack`](nethack/) | nethack | 3.6.6 | https://www.nethack.org/ |
|
||||||
| [`ninja`](ninja/) | Ninja | 1.10.2 | https://ninja-build.org/ |
|
| [`ninja`](ninja/) | Ninja | 1.11.0 | https://ninja-build.org/ |
|
||||||
| [`nippon`](nippon/) | Nippon Safes Inc. | 1.0 | https://www.scummvm.org/games/#games-nippon |
|
| [`nippon`](nippon/) | Nippon Safes Inc. | 1.0 | https://www.scummvm.org/games/#games-nippon |
|
||||||
| [`npiet`](npiet/) | Piet language interpreter | 1.3f | https://www.bertnase.de/npiet/ |
|
| [`npiet`](npiet/) | Piet language interpreter | 1.3f | https://www.bertnase.de/npiet/ |
|
||||||
| [`npth`](npth/) | New GNU Portable Threads Library | 1.6 | https://gnupg.org/software/npth/index.html |
|
| [`npth`](npth/) | New GNU Portable Threads Library | 1.6 | https://gnupg.org/software/npth/index.html |
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port=ninja
|
port='ninja'
|
||||||
version=1.10.2
|
version='1.11.0'
|
||||||
files="https://github.com/ninja-build/ninja/archive/v${version}.tar.gz ninja-v${version}.tar.gz ce35865411f0490368a8fc383f29071de6690cbadc27704734978221f25e2bed"
|
files="https://github.com/ninja-build/ninja/archive/v${version}.tar.gz ninja-v${version}.tar.gz 3c6ba2e66400fe3f1ae83deb4b235faf3137ec20bd5b08c29bfc368db143e4c6"
|
||||||
auth_type=sha256
|
auth_type='sha256'
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
CXXFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
CXXFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
||||||
LDFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
LDFLAGS="--sysroot=${SERENITY_INSTALL_ROOT}" \
|
||||||
# platform=linux is close enough.
|
# platform=linux is close enough.
|
||||||
run ./configure.py --bootstrap --platform=linux
|
run ./configure.py --bootstrap --platform='linux'
|
||||||
run strip ninja
|
run strip ninja
|
||||||
}
|
}
|
||||||
|
|
||||||
install() {
|
install() {
|
||||||
run mkdir -p "${SERENITY_INSTALL_ROOT}/usr/local/bin"
|
run mkdir -p "${SERENITY_INSTALL_ROOT}/usr/local/bin"
|
||||||
run cp ninja "${SERENITY_INSTALL_ROOT}/usr/local/bin/ninja"
|
run cp ninja "${SERENITY_INSTALL_ROOT}/usr/local/bin"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue