forked from pool/ninja
b8db698acd
update to ninja 1.6.0. Use Python 3 for configuration. OBS-URL: https://build.opensuse.org/request/show/314674 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/ninja?expand=0&rev=21
65 lines
2.0 KiB
RPMSpec
65 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package ninja
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products 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
|
|
Summary: A small build system closest in spirit to Make
|
|
License: Apache-2.0
|
|
Group: Development/Tools/Building
|
|
Version: 1.6.0
|
|
Release: 0
|
|
Url: https://github.com/martine/ninja
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: python3-base
|
|
Source0: https://github.com/martine/ninja/archive/v%{version}.tar.gz
|
|
Patch1: ninja-disable-maxprocs-test.patch
|
|
|
|
%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 -p1
|
|
|
|
%build
|
|
python3 ./configure.py --bootstrap
|
|
|
|
%install
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
install -m 0755 ninja %{buildroot}%{_bindir}/ninja
|
|
install -D -m 0644 misc/zsh-completion %{buildroot}%{_datadir}/zsh/site-functions/_ninja
|
|
install -D -m 0644 misc/ninja.vim %{buildroot}%{_datadir}/vim/site/syntax/ninja.vim
|
|
install -D -m 0644 misc/bash-completion %{buildroot}%{_sysconfdir}/bash_completion.d/ninja
|
|
|
|
%check
|
|
./ninja ninja_test
|
|
./ninja_test
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/ninja
|
|
%{_datadir}/zsh
|
|
%{_datadir}/vim
|
|
%{_sysconfdir}/bash_completion.d
|
|
%doc COPYING
|
|
|
|
%changelog
|