mirror of
https://abf.rosa.ru/djam/helm-mirror.git
synced 2025-02-23 15:52:58 +00:00
33 lines
612 B
RPMSpec
33 lines
612 B
RPMSpec
%define debug %nil
|
|
%define debug_package %nil
|
|
|
|
Name: helm-mirror
|
|
Version: 0.3.1
|
|
Release: 1
|
|
Summary: Helm plugin used to mirror repositories
|
|
URL: https://github.com/openSUSE/helm-mirror
|
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1000: %{name}.rpmlintrc
|
|
License: ASL 2.0
|
|
Group: Development/Other
|
|
BuildRequires: go
|
|
BuildRequires: git-core
|
|
BuildRequires: upx
|
|
|
|
%description
|
|
Helm plugin used to mirror Chart repositories
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%make
|
|
upx bin/%{name}
|
|
|
|
%install
|
|
install -Dm0755 bin/%{name} %{buildroot}%{_bindir}/%{name}
|
|
|
|
%files
|
|
%doc README.md LICENSE
|
|
%{_bindir}/%{name}
|
|
|