forked from microsoft/azurelinux-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello_world_demo.spec
35 lines (27 loc) · 938 Bytes
/
hello_world_demo.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
Summary: A demonstration package that creates a "Hello-World" application
Name: hello_world_demo
Version: 1.0.0
Release: 2%{?dist}
License: MIT
URL: https://dev.azure.com/mariner-org/mariner/_git/samples?path=%2Fhello_world_sample.html
Group: Applications/Text
Vendor: Microsoft
Distribution: Mariner
Source0: http://dev.azure.com/mariner-org/mariner/_git/samples/%{name}-%{version}.tar.gz
BuildRequires: gcc
%description
A simple hello-world application
%prep
%setup -q
%build
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
%files
%defattr(-,root,root)
%{_bindir}
%changelog
* Mon Jun 15 2020 Pawel Winogrodzki <[email protected]> 1.0.0-2
- Adding 'BuildRequires' for the sake of demonstrating external, build-time dependencies.
* Wed Oct 09 2019 Jonathan Slobodzian <[email protected]> 1.0.0-1
- Initial version of demo package