spec file and source

This commit is contained in:
Lukas Greve
2025-07-09 10:46:47 +02:00
parent 5f909abe3e
commit c51d9fe28f
2 changed files with 29 additions and 0 deletions

BIN
SOURCES/hello-0.0.1.tar.gz Normal file

Binary file not shown.

29
SPECS/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: http://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 %{name}.sh $RPM_BUILD_ROOT/%{_bindir}
%files
%{_bindir}/%{name}.sh
%changelog
* Wed Jul 09 2025 Lukas Greve <please@refre.ch> - 0.0.1
- First version being packages