summaryrefslogtreecommitdiff
path: root/examples/prebuilt_rpmbuild/test_rpm.spec
blob: c52dc24e1b7935ac0df8884f72288be65f9e1a9b (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
Name: example
Version: 0
Release: 1
Summary: Example .spec file
License: Apache License, v2.0

# Do not try to use magic to determine file types
%define __spec_install_post %{nil}
# Do not die because we give it more input files than are in the files section
%define _unpackaged_files_terminate_build 0

%description
This is a package description.

%build

%install
cp WORKSPACE BUILD readme.md test_rpm.spec %{buildroot}/

%files
/WORKSPACE
/BUILD
/readme.md
/test_rpm.spec