From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 3/5] ninja: New package Date: Sun, 21 Oct 2018 21:35:32 +0200 Message-ID: <20181021193534.31718-3-stefan.schantl@ipfire.org> In-Reply-To: <20181021193534.31718-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0809694890835865475==" List-Id: --===============0809694890835865475== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable --- ninja/ninja.nm | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 ninja/ninja.nm diff --git a/ninja/ninja.nm b/ninja/ninja.nm new file mode 100644 index 000000000..e0793d8a0 --- /dev/null +++ b/ninja/ninja.nm @@ -0,0 +1,69 @@ +############################################################################= ### +# IPFire.org - An Open Source Firewall Solution = # +# Copyright (C) - IPFire Development Team = # +############################################################################= ### + +name =3D ninja +version =3D 1.8.2 +release =3D 1 + +groups =3D Applications/System +url =3D http://martine.github.com/ninja/ +license =3D ASL 2.0 +summary =3D A small build system with a focus on speed + +description + Ninja is a small build system with a focus on speed. It differs from other + build systems in two major respects: it is designed to have its input files + generated by a higher-level build system, and it is designed to run builds = as + fast as possible. +end + +source_dl =3D https://github.com/martine/ninja/archive/v%{version}/ + +build + requires + asciidoc + python3-devel + end + + build + # Configure and bootstrap the build environment. + %{python3} configure.py --bootstrap --verbose + + # Build ninja. + ./ninja -v all + + # Build manual. + ./ninja -v manual + end + + check + # Run testsuite - filter SubprocessTest + ./ninja_test --gtest_filter=3D-SubprocessTest.SetWithLots + end + + install + # Install ninja. + install -Dpm0755 ninja -t %{BUILDROOT}%{bindir}/ + + # Create compatibliy symlink. + ln -s ninja %{BUILDROOT}%{bindir}/ninja-build + + # Install bash-comletion. + install -Dpm0644 misc/bash-completion %{BUILDROOT}%{datadir}/bash-completi= on/completions/ninja + + # Install ninja syntax highlighting for vim. + install -Dpm0644 misc/ninja.vim %{BUILDROOT}%{datadir}/vim/vimfiles/syntax= /ninja.vim + end +end + +packages + package %{name} + provides +=3D ninja-build + end + + package %{name}-debuginfo + template DEBUGINFO + end +end --=20 2.17.1 --===============0809694890835865475==--