]> git.pld-linux.org Git - packages/dcdl.git/blob - dcdl.spec
e7a23ef9b3e84a8759ff39642dbe69d6311c9da2
[packages/dcdl.git] / dcdl.spec
1 %define         fversion        %(echo %{version} |tr . _)
2 %define         rname   dcd
3 Summary:        Speech Recognition Decoder Library
4 Summary(pl):    Biblioteka rozpoznawania dekodowaƱ
5 Name:           dcdl
6 Version:        2.0
7 Release:        1
8 License:        Free for non-comercial use, non-distributable
9 # from http://akpublic.research.att.com/cgi-bin/access.cgi/as/vt/ext-software/www-ne-license.cgi?form.dcd.binary
10 Source0:        %{rname}_%{fversion}.linux.i386.tar.gz
11 Group:          Applications/Text
12 URL:            http://www.research.att.com/sw/tools/dcd/
13 ExclusiveArch:  %{ix86}
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 The DCD Library is a software collection for speech recognition
18 decoding and related functions. Based on the Finite-State Machine
19 (FSM) Library, it provides higher-level operations needed specifically
20 for decoding.
21
22 %prep
23 %setup -q -n %{rname}-%{version}
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man{1,3,5},%{_includedir}}
28 install bin/* $RPM_BUILD_ROOT%{_bindir}
29 install doc/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
30 install doc/*.3 $RPM_BUILD_ROOT%{_mandir}/man3
31 install doc/*.5 $RPM_BUILD_ROOT%{_mandir}/man5
32 install include/*.h $RPM_BUILD_ROOT%{_includedir}
33
34 %clean
35 rm -rf $RPM_BUILD_ROOT
36
37 %files
38 %defattr(644,root,root,755)
39 %attr(755,root,root) %{_bindir}/*
40 %{_mandir}/man?/*
41 %{_includedir}/*
This page took 0.087457 seconds and 2 git commands to generate.