Some checks failed
Build and Publish RPM / build-and-publish (push) Failing after 4s
Co-authored-by: aider (ollama_chat/qwen3-coder-30b-c24k) <aider@aider.chat>
30 lines
547 B
RPMSpec
30 lines
547 B
RPMSpec
Name: hello
|
|
Version: 0.0.1
|
|
Release: 1%{?dist}
|
|
Summary: A simple hello world script
|
|
BuildArch: noarch
|
|
|
|
License: GPLv3+
|
|
URL: https://git.phyllo.me/
|
|
Source0: %{name}-%{version}.tar.gz
|
|
|
|
Requires: bash
|
|
|
|
%description
|
|
A demo RPM build
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
cp hello.sh $RPM_BUILD_ROOT/%{_bindir}
|
|
|
|
%files
|
|
%{_bindir}/hello.sh
|
|
|
|
%changelog
|
|
* Wed Jul 09 2025 Lukas Greve <please@refre.ch> - 0.0.1
|
|
- First version being packaged
|