]> git.pld-linux.org Git - packages/tf.git/blame_incremental - tf.spec
- updated to 50b8
[packages/tf.git] / tf.spec
... / ...
CommitLineData
1# Often html doc files aren't sync with tf releases.
2# New tf releases contains mostly bug fixes, so
3# older docs should be ok.
4%define doc_ver 50b8
5Summary: tf - TinyFugue - text-mode MUD client
6Summary(pl.UTF-8): tf - TinyFugue - tekstowy klient do MUD-ów
7Name: tf
8Version: 50b8
9Release: 1
10License: GPL
11Group: Applications/Games
12Source0: http://dl.sourceforge.net/tinyfugue/%{name}-%{version}.tar.gz
13# Source0:
14Source1: http://dl.sourceforge.net/tinyfugue/%{name}-%{doc_ver}-help.tar.gz
15# Source1:
16Source2: http://www.ingwar.eu.org/downloads/%{name}.syntax.gz
17# Source2:
18URL: http://sourceforge.net/projects/tinyfugue/
19BuildRequires: autoconf
20BuildRequires: ncurses-devel
21BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
22
23%description
24TinyFugue is a MUD-Client (Multi User Dungeons) that allows the user
25to dive into one the most fascinating
26Multi-User-Non-Graphic-Fantasy-Role-Playing-Games. Just Enter "tf" and
27enjoy your game. This client works in text mode, supports MCCP
28compression and multiline statusbar.
29
30%description -l pl.UTF-8
31TinyFugue jest klientem MUD (Multi User Dungeons), który pozwala
32użytkownikowi zagłębić się w najbardziej fascynujący świat
33Multi-User-Non-Graphic-Fantasy-Role-Playing-Games. Jest to po prostu
34jeden z najlepszych, jeśli nie najlepszy klient do gry w MUD-y. Działa
35w trybie tekstowym, obsługuje protokół kompresji MCCP oraz posiada
36obsługę wieloliniowego statusu.
37
38%package doc
39Summary: tf - TinyFugue - text-mode MUD client - HTML help files
40Summary(pl.UTF-8): tf - TinyFugue - tekstowy klient do MUD-ów - pliki pomocy w HTML
41Group: Applications/Games
42
43%description doc
44HTML help files.
45
46%description doc -l pl.UTF-8
47Pliki pomocy w HTML.
48
49%prep
50%setup -q
51tar xzPf %{SOURCE1}
52cp %{SOURCE2} .
53%build
54%{__autoconf}
55%configure
56%{__make}
57
58%install
59rm -rf $RPM_BUILD_ROOT
60install -d $RPM_BUILD_ROOT%{_bindir}
61install -d $RPM_BUILD_ROOT%{_libdir}/tf-lib
62install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/topics
63install -d $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/commands
64
65
66install tf-lib/* $RPM_BUILD_ROOT%{_libdir}/tf-lib
67install src/tf $RPM_BUILD_ROOT%{_bindir}
68
69install %{name}-%{doc_ver}-help/topics/* $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/topics
70install %{name}-%{doc_ver}-help/commands/* $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/commands
71install %{name}-%{doc_ver}-help/index.html $RPM_BUILD_ROOT%{_docdir}/%{name}-doc-%{version}/index.html
72
73%clean
74rm -rf $RPM_BUILD_ROOT
75
76%post
77echo "%{name}-%{version} is _beta_ release!"
78echo "Some of your scripts may not work or work not properly."
79echo "You have been warned."
80
81%files
82%defattr(644,root,root,755)
83%doc CHANGES CREDITS README tf.syntax.gz
84%attr(755,root,root) %{_bindir}/*
85%{_libdir}/%{name}-lib
86
87%files doc
88%defattr(644,root,root,755)
89%{_docdir}/%{name}-doc-%{version}
This page took 0.035404 seconds and 4 git commands to generate.