From 642ce2ddb6dd26c637e3d0902614568918266196 Mon Sep 17 00:00:00 2001 From: Thomas Guthmann Date: Fri, 20 May 2016 12:04:02 +1000 Subject: [PATCH] Add spec file --- no-more-secrets.spec | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 no-more-secrets.spec diff --git a/no-more-secrets.spec b/no-more-secrets.spec new file mode 100644 index 0000000..a9ac485 --- /dev/null +++ b/no-more-secrets.spec @@ -0,0 +1,40 @@ +Name: no-more-secrets +Version: 0.2.0 +Release: 1%{?dist} +Summary: Infamous "decrypting text" effect +Group: Amusements/Games +License: GPLv3 +URL: https://github.com/bartobri/no-more-secrets +Source0: https://github.com/bartobri/no-more-secrets/archive/v%{version}.tar.gz +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) +BuildRequires: ncurses-devel + +%description +"No More Secrets" is the name I've lovingly given to the infamous "decrypting text" effect seen on screen in the 1992 hacker movie Sneakers. + +%prep +%setup -q -n %{name}-%{version} + +%build +make + +%install +rm -rf %{buildroot} +install -d m0755 %{buildroot}%{_bindir} +make install prefix=%{buildroot}/usr + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +/usr/bin/nms +/usr/bin/sneakers + +%changelog +* Fri May 20 2016 Thomas Guthmann - 0.2 +- Already a new version! + +* Wed May 18 2016 Thomas Guthmann - 0.1 +- Initial release +