forked from pool/ninja
041a072ab1
Added macros.ninja as external source and install it to rpmconfigdir. This installs macros for RPM which are then used by meson (since v0.36) [The macros file comes from Fedora, allowing to easy manage x-distro packages] OBS-URL: https://build.opensuse.org/request/show/444304 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/ninja?expand=0&rev=32
77 lines
2.3 KiB
RPMSpec
77 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package ninja
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: ninja
|
|
Version: 1.7.2
|
|
Release: 0
|
|
Summary: A small build system closest in spirit to Make
|
|
License: Apache-2.0
|
|
Group: Development/Tools/Building
|
|
Url: https://ninja-build.org/
|
|
Source0: https://github.com/ninja-build/ninja/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: macros.ninja
|
|
Patch1: ninja-disable-maxprocs-test.patch
|
|
BuildRequires: gcc-c++
|
|
%if 0%{?suse_version} <= 1110
|
|
BuildRequires: python-base
|
|
%else
|
|
BuildRequires: python3-base
|
|
%endif
|
|
BuildRequires: re2c
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Ninja is yet another build system.
|
|
It takes as input the interdependencies of files (typically source code and output executables)
|
|
and orchestrates building them, quickly.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
export CXXFLAGS="%{optflags}"
|
|
%if 0%{?suse_version} <= 1110
|
|
python2./configure.py --bootstrap --verbose
|
|
%else
|
|
python3 ./configure.py --bootstrap --verbose
|
|
%endif
|
|
|
|
%install
|
|
install -D -p -m 0755 ninja %{buildroot}%{_bindir}/ninja
|
|
install -D -p -m 0644 misc/zsh-completion %{buildroot}%{_datadir}/zsh/site-functions/_ninja
|
|
install -D -p -m 0644 misc/ninja.vim %{buildroot}%{_datadir}/vim/site/syntax/ninja.vim
|
|
install -D -p -m 0644 misc/bash-completion %{buildroot}%{_sysconfdir}/bash_completion.d/ninja
|
|
install -D -p -m 0644 %{S:1} %{buildroot}%{_rpmconfigdir}/macros.d/macros.ninja
|
|
|
|
%check
|
|
./ninja ninja_test
|
|
./ninja_test
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING
|
|
%{_bindir}/ninja
|
|
%{_datadir}/zsh
|
|
%{_datadir}/vim
|
|
%{_sysconfdir}/bash_completion.d
|
|
%{_rpmconfigdir}/macros.d/macros.ninja
|
|
|
|
%changelog
|