make-it-quick/make-it-quick.spec

76 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2019-03-08 01:42:26 +08:00
Name: make-it-quick
2019-04-23 23:14:39 +08:00
Version: 0.2.5
2019-03-08 01:42:26 +08:00
Release: 1%{?dist}
Summary: A make-only build system for C/C++ programs
License: GPLv3+
URL: https://github.com/c3d/%{name}
2019-03-08 01:42:26 +08:00
Source: https://github.com/c3d/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: make >= 3.82
BuildRequires: gcc >= 4.8
BuildRequires: gcc-c++ >= 4.8
Requires: sed
Requires: make >= 3.82
2019-03-08 01:42:26 +08:00
BuildArch: noarch
%description
A simple make-only build system with basic auto-configuration that
can be used to rapidly build C and C++ programs.
%package devel
Summary: Development files for make-it-quick
%description devel
Development files for make-it-quick
2019-03-08 01:42:26 +08:00
%prep
%autosetup
%build
%configure
%make_build COLORIZE= TARGET=release
%check
%make_build COLORIZE= TARGET=release check
%install
%make_install COLORIZE= TARGET=release DOC_INSTALL=
2019-03-08 01:42:26 +08:00
%files
%doc README.md
%doc AUTHORS
%doc NEWS
%license COPYING
%dir %{_includedir}/%{name}
%{_includedir}/%{name}/*.mk
%dir %{_datadir}/%{name}
%dir %{_datadir}/%{name}/config
%{_datadir}/%{name}/config/*.c
%files devel
%{_datadir}/pkgconfig/%{name}.pc
2019-03-08 01:42:26 +08:00
%changelog
2019-04-23 23:14:39 +08:00
* Tue Apr 23 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2.5-1
- New upstream release
* Tue Mar 19 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2.4-1
- Address review comments (see comment #11 of BZ#1689277)
- Integrate fixes found while building SPICE
* Fri Mar 15 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2.3-1
- Address review comments (see comment #7 of BZ#1689277)
* Thu Mar 14 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2.2-1
- Change the way the config.system-setup.mk file is generated
- Address issues reported by rpmlint
* Tue Mar 12 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2.1-1
- Add support for man pages and improve handling of subdirectories
2019-03-08 01:42:26 +08:00
* Thu Mar 7 2019 Christophe de Dinechin <dinechin@redhat.com> - 0.2
- Finish packaging work
2019-03-08 01:42:26 +08:00
* Thu Sep 20 2018 Christophe de Dinechin <dinechin@redhat.com> - 0.1
- Initial version of the package