feat: Add RPM build workflow and spec file for Gitea integration
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>
This commit is contained in:
Lukas Greve
2025-11-27 19:49:04 +01:00
parent 7e7b88ddff
commit c31fd77db6
2 changed files with 113 additions and 0 deletions

29
hello.spec Normal file
View File

@@ -0,0 +1,29 @@
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