%global debug_package %{nil} Name: skatelet Version: 0.5.11 # Removed %{?dist} to make a generic, distribution-agnostic package Release: 1 Summary: A small binary agent for the skate container platform License: Apache-2.0 URL: https://github.com/skateco/skate Source0: skatelet-x86_64-unknown-linux-gnu.tar.gz Source1: README.md Source2: LICENSE # This is a binary package, so no build-time dependencies are needed. # We are only packaging a pre-compiled file. %description skatelet is the small binary agent for the skate container platform. Skate is a low resource, no daemon, kubernetes manifest compatible container platform. It runs as a CLI on your machine and talks to skatelet on each host over ssh to manage pods. %prep # We use %setup -c -T here because the tarball does not contain a # top-level directory (it just has the 'skatelet' binary). # This command creates a clean build directory for us. %setup -q -c -T # Now, extract the binary from Source0 into our clean directory tar -xvf %{SOURCE0} # Copy doc/license files from the SOURCES dir into the build dir # We use the %{SOURCE1} and %{SOURCE2} macros to refer to them cp %{SOURCE1} . cp %{SOURCE2} . %build # This is a pre-compiled binary, so no build steps are needed. %changelog * Wed Nov 05 2025 builder - Initial packaging of skatelet v0.5.11