]> git.pld-linux.org Git - packages/cvoicecontrol.git/blob - cvoicecontrol.spec
- init PLD spec , need correct and cosmetics
[packages/cvoicecontrol.git] / cvoicecontrol.spec
1 Summary:        CVoiceControl is a speech recognition system that enables a user to connect spoken commands to unix commands.
2 Summary(pl):    CVoiceControl jest narzedziem do wydawania polecen przy pomocy mowy :)
3 Name:           cvoicecontrol
4 Version:        0.9alpha
5 Release:        1
6 License:        GPL
7 Group:          Applications/Tools
8 Source0:        http://www.kiecza.de/daniel/linux/cvoicecontrol-0.9alpha.tar.gz
9 Patch0:         %{name}-make.patch
10 URL:            http://www.kiecza.de/daniel/linux/
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 CVoiceControl is a speech recognition system 
15 that enables a user to connect spoken commands to unix commands. 
16 It automagically detects speech input from a microphone, performs recognition on this input and 
17 in case of successful recognition - executes the associated unix command. 
18
19 %description -l pl
20
21 %prep
22 %setup -q -n %{name}-%{version}
23 %patch0 -p1
24
25 %build
26 ./configure
27
28 %{__make} CFLAGS="%{rpmcflags} " CC="%{__cc}"
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32 install -d $RPM_BUILD_ROOT{%{_bindir},%{_docdir}}
33
34 install cvoicecontrol/cvoicecontrol  $RPM_BUILD_ROOT%{_bindir}
35 install cvoicecontrol/model_editor  $RPM_BUILD_ROOT%{_bindir}
36 install cvoicecontrol/microphone_config  $RPM_BUILD_ROOT%{_bindir}
37 install cvoicecontrol/docs/en/index*    $RPM_BUILD_ROOT%{_docdir}
38
39
40 gzip -9nf AUTHORS BUGS COPYING FAQ INSTALL README 
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(644,root,root,755)
47 %doc *.gz
48 %attr(755,root,root) %{_bindir}/*
This page took 0.324623 seconds and 3 git commands to generate.