Add hello_world.spec

This commit is contained in:
Eduardo Navarro 2022-09-26 13:23:14 +02:00
commit 4bfa8e1683

28
hello_world.spec Normal file
View File

@ -0,0 +1,28 @@
Name: hello_world
Version: 7
Release: 1
Summary: Most simple RPM package
License: MIT
%description
This is my first RPM package, which does nothing.
%prep
# we have no source, so nothing here
%build
cat > hello_world.sh <<EOF
#!/usr/bin/bash
echo Hello world
EOF
%install
mkdir -p %{buildroot}/usr/bin/
install -m 755 hello_world.sh %{buildroot}/usr/bin/hello_world.sh
%files
/usr/bin/hello_world.sh
%changelog
# let skip this for now
Footer