-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathspec
More file actions
43 lines (31 loc) · 668 Bytes
/
spec
File metadata and controls
43 lines (31 loc) · 668 Bytes
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
%define _binaries_in_noarch_packages_terminate_build 0
%define __spec_install_post %{nil}
%define debug_package %{nil}
%define __os_install_post %{_dbpath}/brp-compress
Summary: {{summary}}
Name: {{name}}
Version: {{version}}
Release: {{release}}
License: {{license}}
Group: {{group}}
{{sources}}
URL: {{url}}
{{requires}}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildArch: {{buildArch}}
%description
{{description}}
%prep
%setup -q
%build
# Empty section.
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}
# in builddir
cp -a * %{buildroot}
{{installScript}}
%clean
rm -rf %{buildroot}
%files
{{files}}