%define debug_package %{nil} Name: podman-tui Version: 0.1.0 Release: 1%{?dist} Summary: A fast, interactive terminal UI dashboard for managing Podman containers. License: MIT URL: https://github.com/mrwolf/podman-tui BuildRequires: golang >= 1.20 Requires: podman %description A fast, interactive terminal UI dashboard for managing Podman containers, built with Go and Bubble Tea. %prep %autosetup -n %{name}-%{version} %build go build -ldflags="-s -w" -o podman-tui ./cmd/podman-tui %install mkdir -p %{buildroot}%{_bindir} install -m 0755 podman-tui %{buildroot}%{_bindir}/podman-tui %files %{_bindir}/podman-tui