[frobtads] Initial import (#3429).

František Dvořák valtri at rpmfusion.org
Wed Jul 27 10:06:05 CEST 2016


commit 27e6aaa8379221b8fcbce9d9bd36bce895ac55d0
Author: František Dvořák <valtri at civ.zcu.cz>
Date:   Wed Jul 27 10:05:13 2016 +0200

    Initial import (#3429).

 .gitignore    |  1 +
 frobtads.spec | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources       |  1 +
 3 files changed, 77 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..c121631 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/frobtads-1.2.3.tar.gz
diff --git a/frobtads.spec b/frobtads.spec
new file mode 100644
index 0000000..a7aef58
--- /dev/null
+++ b/frobtads.spec
@@ -0,0 +1,75 @@
+Name:           frobtads
+Version:        1.2.3
+Release:        1%{?dist}
+Summary:        Text interpreter for Tads games
+
+License:        non-commercial
+URL:            http://www.tads.org/frobtads.htm
+Source0:        http://www.tads.org/%{name}/%{name}-%{version}.tar.gz
+
+BuildRequires:  libcurl-devel
+BuildRequires:  ncurses-devel
+Provides:       bundled(md5-deutsch-c++)
+Provides:       bundled(sha2-gladman)
+Provides:       bundled(tads2) = 2.5.17
+Provides:       bundled(tads3) = 3.1.3
+
+%description
+TADS stands for "Text Adventure Development System". It's a set of
+tools that allow easy implementation of text adventures, or "Interactive
+Fiction". The tools include a compiler along with supporting libraries,
+a debugger and an interpreter. An interpreter is needed to run the
+compiler's output, as it generates "byte code" programs (much like
+Java).
+
+
+%package devel
+Summary:        Tads Compilers
+Requires:       %{name}%{?_isa} = %{version}-%{release}
+
+%description devel
+TADS stands for "Text Adventure Development System". It's a set of
+tools that allow easy implementation of text adventures, or "Interactive
+Fiction". The tools include a compiler along with supporting libraries,
+a debugger and an interpreter. An interpreter is needed to run the
+compiler's output, as it generates "byte code" programs (much like
+Java).
+
+This package contains Tads 2 and Tads 3 compilers.
+
+
+%prep
+%setup -q
+
+
+%build
+%configure
+make %{?_smp_mflags} V=1
+
+
+%install
+make install DESTDIR=%{buildroot}
+mkdir -p %{buildroot}%{_pkgdocdir}-devel
+rm -rf %{buildroot}%{_datadir}/frobtads/tads3/doc
+
+
+%files
+%doc doc/AUTHORS doc/BUGS doc/NEWS doc/README doc/THANKS
+%license doc/COPYING tads3/LICENSE.TXT
+%dir %{_datadir}/frobtads/
+%dir %{_datadir}/frobtads/tads3/
+%{_bindir}/frob
+%{_datadir}/frobtads/tads3/res/
+
+%files devel
+%doc doc/COMPILERS tads3/doc/*
+%{_bindir}/tadsc
+%{_bindir}/t3make
+%{_datadir}/frobtads/tads2/
+%{_datadir}/frobtads/tads3/include/
+%{_datadir}/frobtads/tads3/lib/
+
+
+%changelog
+* Mon Dec 28 2015 František Dvořák <valtri at civ.zcu.cz> - 1.2.3-1
+- Initial package
diff --git a/sources b/sources
index e69de29..0c39881 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+c6ed8cd6dac04b3ee6f4422cea688979  frobtads-1.2.3.tar.gz


More information about the rpmfusion-commits mailing list