Files
hello/hello.spec
Lukas Greve c31fd77db6
Some checks failed
Build and Publish RPM / build-and-publish (push) Failing after 4s
feat: Add RPM build workflow and spec file for Gitea integration
Co-authored-by: aider (ollama_chat/qwen3-coder-30b-c24k) <aider@aider.chat>
2025-11-27 19:49:04 +01:00

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