diff options
author | Alejandro Acosta <aacosta@fedoraproject.org> | 2018-05-13 15:54:51 -0600 |
---|---|---|
committer | Alejandro Acosta <aacosta@fedoraproject.org> | 2018-05-13 15:54:51 -0600 |
commit | ecd7704666bbe5440b01c6420233df0705299f38 (patch) | |
tree | 0bd135accabcfe6e8e46d627de2236fe2537fcf8 /howdy/review-howdy/srpm-unpacked | |
parent | 29c46622f89d742af2e15d0b3303f3f6e444d75a (diff) | |
download | rpmdevel-master.tar.gz rpmdevel-master.tar.xz rpmdevel-master.zip |
Diffstat (limited to 'howdy/review-howdy/srpm-unpacked')
-rw-r--r-- | howdy/review-howdy/srpm-unpacked/howdy | 2 | ||||
-rw-r--r-- | howdy/review-howdy/srpm-unpacked/howdy.spec | 28 |
2 files changed, 30 insertions, 0 deletions
diff --git a/howdy/review-howdy/srpm-unpacked/howdy b/howdy/review-howdy/srpm-unpacked/howdy new file mode 100644 index 0000000..99d05ad --- /dev/null +++ b/howdy/review-howdy/srpm-unpacked/howdy @@ -0,0 +1,2 @@ +#!/bin/bash +echo "Howdy, partner!" diff --git a/howdy/review-howdy/srpm-unpacked/howdy.spec b/howdy/review-howdy/srpm-unpacked/howdy.spec new file mode 100644 index 0000000..215f275 --- /dev/null +++ b/howdy/review-howdy/srpm-unpacked/howdy.spec @@ -0,0 +1,28 @@ +Name: howdy +Version: 1 +Release: 1%{?dist} +Summary: Say Hello ,Texas style + +License: Public Domain +Source0: howdy +BuildArch: noarch +%description +A simple program to greet the user, Texas style. + +%prep + +%build + +%install +mkdir -p %{buildroot}/%{_bindir} +install -p -m 755 %{SOURCE0} %{buildroot}/%{_bindir} + +%files +%{_bindir}/howdy + +%changelog +* Sat May 06 2017 Alejandro Acosta alxacostaa@gmail.com - 1-1 +- Initial Packaging + + + |