Last active
July 26, 2018 05:57
-
-
Save yookoala/e26d3b7bb28b4557386f09fd6efec20f to your computer and use it in GitHub Desktop.
RPM SPEC file for tick5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some metadata required by an RPM package | |
Name: tick5 | |
Summary: Print a message every 5s | |
Version: 0.1 | |
Release: 1 | |
License: MIT | |
%description | |
tick5 is a simple useless script that echos a message every 5 seconds. | |
%install | |
mkdir -p %{buildroot}/usr/bin | |
cp -pdf tick5 %{buildroot}/usr/bin/tick5 | |
chmod 755 %{buildroot}/usr/bin/tick5 | |
%files | |
/usr/bin/tick5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment