-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsshf.spec
More file actions
32 lines (26 loc) · 808 Bytes
/
Copy pathsshf.spec
File metadata and controls
32 lines (26 loc) · 808 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
Name: sshf
Version: 1.0.0
Release: 1%{?dist}
Summary: SSH Host Manager TUI (Rust)
License: MIT
URL: https://github.com/Rooterts/sshf
Source0: %{name}-%{version}.tar.gz
BuildRequires: rust cargo
Requires: openssl zlib
%description
SSH Host Manager TUI for managing SSH hosts with a modern interface.
%prep
%setup -q
%build
cargo build --release --locked
%install
install -Dm755 target/release/sshf %{buildroot}/usr/bin/sshf
install -Dm644 README.md %{buildroot}/usr/share/doc/sshf/README.md
install -Dm644 LICENSE %{buildroot}/usr/share/licenses/sshf/LICENSE
%files
/usr/bin/sshf
/usr/share/doc/sshf/README.md
/usr/share/licenses/sshf/LICENSE
%changelog
* Mon May 19 2025 Adrian Perez Perez <ap393409@gmail.com> - 1.0.0-1
- Initial package