You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
444 B
41 lines
444 B
# SPEC file overview: |
|
# https://docs.fedoraproject.org/en-US/quick-docs/creating-rpm-packages/#con_rpm-spec-file-overview |
|
# Fedora packaging guidelines: |
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/ |
|
|
|
|
|
Name: |
|
Version: |
|
Release: 0%{?dist} |
|
Summary: |
|
|
|
License: |
|
URL: |
|
Source0: |
|
|
|
BuildRequires: |
|
Requires: |
|
|
|
%description |
|
|
|
|
|
%prep |
|
%setup -q |
|
|
|
|
|
%build |
|
%configure |
|
make %{?_smp_mflags} |
|
|
|
|
|
%install |
|
%make_install |
|
|
|
|
|
%files |
|
%doc |
|
%license |
|
|
|
|
|
|
|
%changelog
|
|
|