mirror of
https://github.com/45Drives/cockpit-navigator.git
synced 2025-08-20 00:58:33 +02:00
38 lines
683 B
Django/Jinja
38 lines
683 B
Django/Jinja
%global debug_package %{nil}
|
|
|
|
Name: {{ name }}
|
|
Version: {{ version }}
|
|
Release: {{ build_number }}%{?dist}
|
|
Summary: {{ description }}
|
|
License: {{ license }}
|
|
URL: {{ git_url }}
|
|
Source0: %{name}-%{version}.tar.gz
|
|
BuildArch: {{ architecture.rocky }}
|
|
Requires: {{ dependencies.rocky_common | join(',') }}
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
%description
|
|
{{ title }}
|
|
{{ description }}
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
# empty
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} DIST=%{dist} NAV_VERS="%{version}-%{release}" install
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
/usr/share/cockpit/navigator/*
|
|
|
|
%changelog
|
|
* Mon Feb 24 2025 Brett Kelly <bkelly@45drives.com> 0.5.10-1
|
|
- build for el9
|