blob: b764ae0a054d49b77f3214293b985ac528f54104 (
plain)
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
|
Name: hello
Version: 2.12.1
Release: 1
Summary: a test tool
License: GPL-3.0-or-later
URL: http://www.gnu.org/software/hello/
Source0: http://ftp.gnu.org/gnu/hello/hello-2.12.1.tar.gz
BuildRequires: gcc make patch
Requires: glibc
%description
The GNU Hello program produces a familiar, friendly greeting.
Yes, this is another implementation of the classic program that prints “Hello, world!” when you run it.
%prep
%autosetup
%build
%configure
%make_build
%install
rm -rf $RPM_BUILD_ROOT
%make_install
%files
#%license add-license-file-here
%doc README
%{_bindir}/hello
%{_datarootdir}/*
%changelog
* Thu Jul 28 2022 hkgy <kaguyahatu@outlook.com> - 2.12.1-1
- update to 2.12.1
* Wed May 11 2022 liukuo <liukuo@kylinos.cn> - 2.10-2
- Change the license to "GPL-3.0-or-later"
* Thu Jul 16 2020 overweight <hexiaowen@huawei.com> 2.10-1
- package init
|