Skip to content

Commit dcaed9c

Browse files
authored
Add lazydocker specfile (#14)
1 parent d6e9a97 commit dcaed9c

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

specs/lazydocker.spec

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
%global debug_package %{nil}
2+
3+
Name: lazydocker
4+
Version: 0.23.3
5+
Release: 1%{?dist}
6+
Summary: The lazier way to manage everything docker
7+
8+
License: MIT
9+
URL: https://github.com/jesseduffield/lazydocker
10+
Source: %{url}/releases/download/v%{version}/%{name}_%{version}_Linux_x86_64.tar.gz
11+
Source1: https://raw.githubusercontent.com/jesseduffield/lazydocker/v%{version}/README.md
12+
Source2: https://raw.githubusercontent.com/jesseduffield/lazydocker/v%{version}/LICENSE
13+
14+
%description
15+
%{summary}
16+
17+
%prep
18+
%autosetup -c
19+
cp %{SOURCE1} CONFIGURATION.md
20+
cp %{SOURCE2} LICENSE
21+
22+
%build
23+
24+
%install
25+
install -p -D %{name} %{buildroot}%{_bindir}/%{name}
26+
27+
%files
28+
%doc CONFIGURATION.md
29+
%license LICENSE
30+
%{_bindir}/%{name}
31+
32+
%changelog
33+
%autochangelog

0 commit comments

Comments
 (0)