SHA256
1
0
forked from pool/crosstool-ng
crosstool-ng/crosstool-ng.spec

88 lines
2.8 KiB
RPMSpec

#
# spec file for package crosstool-ng
#
# Copyright (c) 2017 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: crosstool-ng
Version: 1.22.0
Release: 0
Summary: Toolchain building framework
License: GPL-2.0 and GPL-2.0+ and GPL-3.0+ and LGPL-2.1 and LGPL-3.0+
Group: Development/Tools/Building
Url: http://crosstool-ng.org
Source0: http://crosstool-ng.org/download/crosstool-ng/%{name}-%{version}.tar.bz2
# PATCH-FIX-TO-UPSTREAM -- bmwiedemann
Patch0: reproducible.patch
# PATCH-FIX-UPSTREAM crosstool-ng-gperf-fix.patch bugs@vdm-design.de -- fixes build with gperf >= 3.1
Patch1: crosstool-ng-gperf-fix.patch
BuildRequires: bison
BuildRequires: fdupes
BuildRequires: flex
BuildRequires: gperf
BuildRequires: help2man
BuildRequires: libtool
BuildRequires: makeinfo
BuildRequires: ncurses-devel
BuildRequires: wget
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: bzip2
Requires: gcc
Requires: gcc-c++
Requires: glibc-devel-static
Requires: gzip
Requires: m4
Requires: wget
Requires: xz
%description
crosstool-NG aims at building toolchains. Toolchains are an essential component
in a software development project. It will compile, assemble and link the code
that is being developed. Some pieces of the toolchain will eventually end up
in the resulting binary/ies: static libraries are but an example.
%prep
%setup -qn %{name}
%patch0 -p1
%patch1 -p1
# from legal team
# "Distribution and use is free, also for commercial purposes" (no modification permission)
find patches/ -name '*-new-valencian-locale.patch' -type f -delete -print
%build
%configure \
--docdir=%{_docdir}/%{name}
make %{?_smp_mflags}
%install
%make_install
%fdupes %{buildroot}%{_libdir}/%{name}-%{version}/
find %{buildroot}%{_libdir}/%{name}-%{version}/ -name '.gitignore' -type f -delete -print
mv %{buildroot}%{_docdir}/%{name}/%{name}-%{version}/* %{buildroot}%{_docdir}/%{name}/
rm -rf %{buildroot}%{_docdir}/%{name}/%{name}-%{version}/
%files
%defattr(-,root,root)
%doc COPYING README.md
%{_bindir}/ct-ng
%{_libdir}/%{name}-%{version}/
%{_docdir}/%{name}/
%{_mandir}/man1/ct-ng.1.gz
%changelog