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

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-03-08 01:42:26 +08:00
Name: make-it-quick
Version: 0.2.2
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://gitlab.com/c3d/%{name}
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
BuildArch: noarch
%description
A simple make-only build system with basic auto-configuration that
can be used to rapidly build C and C++ programs.
%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 LICENSE
%{_includedir}/%{name}/*.mk
%{_datarootdir}/%{name}/config/*.c
%{_datarootdir}/pkgconfig/%{name}.pc
2019-03-08 01:42:26 +08:00
%changelog
* 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
* Thu Sep 20 2018 Christophe de Dinechin <dinechin@redhat.com> - 0.1
- Initial version of the package