summaryrefslogtreecommitdiff
path: root/beyond-the-titanic
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-04-04 08:03:34 -0400
committerB Stack <bgstack15@gmail.com>2019-04-04 08:03:34 -0400
commitb5197b99b330b3ba66377edf7007de5fe21e988a (patch)
treeebfca63b0fd24552421cbb5bb7052225893bc4e0 /beyond-the-titanic
parentMerge branch 'beyond-bump' into 'master' (diff)
downloadstackrpms-b5197b99b330b3ba66377edf7007de5fe21e988a.tar.gz
stackrpms-b5197b99b330b3ba66377edf7007de5fe21e988a.tar.bz2
stackrpms-b5197b99b330b3ba66377edf7007de5fe21e988a.zip
beyond-the-titanic: fix minor spec problems
Allow building on el, and fix some build dependencies.
Diffstat (limited to 'beyond-the-titanic')
-rw-r--r--beyond-the-titanic/beyond-the-titanic.spec10
1 files changed, 7 insertions, 3 deletions
diff --git a/beyond-the-titanic/beyond-the-titanic.spec b/beyond-the-titanic/beyond-the-titanic.spec
index 18492d8..b6f0434 100644
--- a/beyond-the-titanic/beyond-the-titanic.spec
+++ b/beyond-the-titanic/beyond-the-titanic.spec
@@ -10,7 +10,7 @@
Name: beyond-the-titanic
Version: 0.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Text adventure game from 1988
Group: Games/AdventureGame
@@ -20,7 +20,7 @@ Source0: %{URL}/-/archive/%{vername}/%{name}-%{vername}.tar.gz
Packager: B Stack <bgstack15@gmail.com>
BuildRequires: fpc
-BuildRequires: desktop-file-utils
+BuildRequires: ImageMagick
Requires: hicolor-icon-theme
%description
@@ -86,12 +86,16 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#%license %attr(444, -, -) License.txt
#%doc %attr(444, -, -) Changelog.txt
%license %attr(444, -, -) %{_licensedir}/*
-%doc %attr(444, -, -) %{_pkgdocdir}/*
+%doc %attr(444, -, -) %{_docdir}/*/*
%{_bindir}/%{name}
%{_datadir}/applications/*.desktop
%{_datadir}/icons/hicolor/*x*/apps/*.png
%{_datadir}/%{name}
%changelog
+* Thu Apr 4 2019 B Stack <bgstack15@gmail.com> - 0.0.1-2
+- add build dependencies
+- fix docdir for el
+
* Sun Mar 31 2019 B Stack <bgstack15@gmail.com> - 0.0.1-1
- Initial rpm built
bgstack15