46 lines
1.8 KiB
RPMSpec
46 lines
1.8 KiB
RPMSpec
|
#TARBALL: https://github.com/ninja-build/ninja/archive/v1.9.0/ninja-1.9.0.tar.gz
|
||
|
#MD5SUM: f340be768a76724b83e6daab69009902;SOURCES/ninja-1.9.0.tar.gz
|
||
|
#-----------------------------------------------------------------------------
|
||
|
Summary: Ninja is a small build system with a focus on speed.
|
||
|
Name: ninja
|
||
|
Version: 1.9.0
|
||
|
Release: 1
|
||
|
License: Any
|
||
|
URL: Any
|
||
|
Group: LFS/Base
|
||
|
Vendor: Elizabeth
|
||
|
Source: %{name}-%{version}.tar.gz
|
||
|
Requires: filesystem
|
||
|
%description
|
||
|
Ninja is a small build system with a focus on speed.
|
||
|
#-----------------------------------------------------------------------------
|
||
|
%prep
|
||
|
%setup -q -n %{NAME}-%{VERSION}
|
||
|
%build
|
||
|
python3 configure.py --bootstrap
|
||
|
%install
|
||
|
install -vdm 755 %{buildroot}/usr/bin/
|
||
|
install -vDm644 ninja %{buildroot}/usr/bin/
|
||
|
install -vDm644 misc/bash-completion %{buildroot}/usr/share/bash-completion/completions/ninja
|
||
|
install -vDm644 misc/zsh-completion %{buildroot}/usr/share/zsh/site-functions/_ninja
|
||
|
#-----------------------------------------------------------------------------
|
||
|
# Copy license/copying file
|
||
|
# install -D -m644 LICENSE %{buildroot}/usr/share/licenses/%{name}/LICENSE
|
||
|
install -D -m644 COPYING %{buildroot}/usr/share/licenses/%{name}/LICENSE
|
||
|
#-----------------------------------------------------------------------------
|
||
|
# Create file list
|
||
|
# rm %{buildroot}%{_infodir}/dir
|
||
|
find %{buildroot} -name '*.la' -delete
|
||
|
find "${RPM_BUILD_ROOT}" -not -type d -print > filelist.rpm
|
||
|
sed -i "s|^${RPM_BUILD_ROOT}||" filelist.rpm
|
||
|
sed -i '/man\/man/d' filelist.rpm
|
||
|
sed -i '/\/usr\/share\/info/d' filelist.rpm
|
||
|
#-----------------------------------------------------------------------------
|
||
|
%files -f filelist.rpm
|
||
|
%defattr(-,root,root)
|
||
|
%changelog
|
||
|
* Sat Apr 06 2019 baho-utot <baho-utot@columbus.rr.com> 1.9.0-1
|
||
|
- LFS-8.4
|
||
|
* Wed Jul 25 2018 baho-utot <baho-utot@columbus.rr.com> 1.8.2-1
|
||
|
- Initial build. First version
|