-
Notifications
You must be signed in to change notification settings - Fork 7
/
make-it-quick.spec
75 lines (58 loc) · 2.03 KB
/
make-it-quick.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Name: make-it-quick
Version: 0.2.5
Release: 1%{?dist}
Summary: A make-only build system for C/C++ programs
License: GPLv3+
URL: https://github.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
Requires: make >= 3.82
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
%prep
%autosetup
%build
%configure
%make_build COLORIZE= TARGET=release
%check
%make_build COLORIZE= TARGET=release check
%install
%make_install COLORIZE= TARGET=release DOC_INSTALL=
%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
%changelog
* Tue Apr 23 2019 Christophe de Dinechin <[email protected]> - 0.2.5-1
- New upstream release
* Tue Mar 19 2019 Christophe de Dinechin <[email protected]> - 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 <[email protected]> - 0.2.3-1
- Address review comments (see comment #7 of BZ#1689277)
* Thu Mar 14 2019 Christophe de Dinechin <[email protected]> - 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 <[email protected]> - 0.2.1-1
- Add support for man pages and improve handling of subdirectories
* Thu Mar 7 2019 Christophe de Dinechin <[email protected]> - 0.2
- Finish packaging work
* Thu Sep 20 2018 Christophe de Dinechin <[email protected]> - 0.1
- Initial version of the package