]> git.pld-linux.org Git - packages/fsm.git/blame - fsm.spec
- converted to UTF-8
[packages/fsm.git] / fsm.spec
CommitLineData
51abb36e 1%define fversion %(echo %{version} |tr . _)
2Summary: Finite-State Machine Library
f380dab2 3Summary(pl.UTF-8): Biblioteka automatów skończonych
51abb36e 4Name: fsm
5Version: 4.0
6Release: 1
7License: Free for educational use, non-distributable
674e9b79 8Group: Applications/Text
51abb36e 9# from http://akpublic.research.att.com/cgi-bin/access.cgi/as/vt/ext-software/www-ne-license.cgi?form.fsm.binary
10Source0: %{name}-%{fversion}.linux.i386.tar.gz
51abb36e 11URL: http://www.research.att.com/sw/tools/fsm/
12ExclusiveArch: %{ix86}
13BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15%description
16The FSM library is a set of general-purpose software tools available
17for Unix, for building, combining, optimizing, and searching weighted
18finite-state acceptors and transducers. Finite-state transducers are
19automata for which each transition has an output label in addition to
20the more familiar input label. Weighted acceptors or transducers are
21acceptors or transducers in which each transition has a weight as well
22as the input or input and output labels.
23
f380dab2
JR
24%description -l pl.UTF-8
25Biblioteka FSM to zbiór narzędzi ogólnego przeznaczenia dostępnych dla
26Uniksa służących do budowania, łączenia, optymalizacji i
27przeszukiwania akceptorów i transduktorów ważonych o skończonej
28liczbie stanów. Transduktory skończone to automaty, dla których każde
29przejście ma etykietę wyjściową oprócz bardziej znanej etykiety
30wejściowej. Akceptory i transduktory ważone to akceptory i
31transduktory, w których każde przejście ma wagę oprócz etykiety
32wejściowej lub wejściowej i wyjściowej.
674e9b79 33
51abb36e 34%prep
35%setup -q
36
37%install
38rm -rf $RPM_BUILD_ROOT
39install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man{1,3}}
40install bin/* $RPM_BUILD_ROOT%{_bindir}
41install doc/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
42install doc/*.3 $RPM_BUILD_ROOT%{_mandir}/man3
43
44%clean
45rm -rf $RPM_BUILD_ROOT
46
47%files
48%defattr(644,root,root,755)
49%doc doc/CHANGES
50%attr(755,root,root) %{_bindir}/*
51%{_mandir}/man?/*
This page took 0.073402 seconds and 4 git commands to generate.