]> git.pld-linux.org Git - packages/dict-mueller7.git/blob - dict-mueller7.spec
9f4e7ce82b41564e43f5a8d68d28b3badb5343a6
[packages/dict-mueller7.git] / dict-mueller7.spec
1 %define         dictname mueller7
2 Summary:        English-Russian dictionary for dictd
3 Summary(pl):    S³ownik angielsko-rosyjski dla dictd
4 Name:           dict-%{dictname}
5 Version:        1.2
6 Release:        3
7 License:        GPL
8 Group:          Applications/Dictionaries
9 Source0:        http://mueller-dic.chat.ru/Mueller7GPL.tgz
10 # Source0-md5:  0b3cd75e916f078b2caa4f2dc59508e4
11 # This one is compressed with bzip2 (do not trust tgz!)
12 #Source0:       http://www.geocities.com/mueller_dic/Mueller7GPL.tgz
13 Source1:        http://www.math.sunysb.edu/~comech/tools/to-dict
14 # Source1-md5:  3c1b69c290fb4c06bf3456baf5bf8b97
15 URL:            http://mueller-dic.chat.ru/
16 BuildRequires:  dictfmt
17 BuildRequires:  dictzip
18 Requires:       dictd
19 Requires:       %{_sysconfdir}/dictd
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 Electronic version of 7th edition of English-Russian dictionary by V.
24 K. Mueller.
25
26 %description -l pl
27 Elektroniczna wersja 7. wydania s³ownika angielsko rosyjskiego V. K.
28 Muellera.
29
30 %prep
31 %setup -q -c
32
33 %build
34 cp %{SOURCE1} .
35 chmod +x ./to-dict
36 ./to-dict --no-trans usr/local/share/dict/Mueller7GPL.koi mueller7.notr
37 ./to-dict --src-data mueller7.notr mueller7.data && rm -f mueller7.notr
38 ./to-dict --data-dict mueller7.data mueller7 && rm -f mueller7.data
39 ./to-dict --expand-index mueller7.index mueller7.index.exp
40 mv -f mueller7.index.exp mueller7.index
41
42 %install
43 rm -rf $RPM_BUILD_ROOT
44 install -d $RPM_BUILD_ROOT{%{_datadir}/dictd,%{_sysconfdir}/dictd}
45
46 dictprefix=%{_datadir}/dictd/%{dictname}
47 echo "# Mueller English-Russian dictionary, 7-th edition (%{version})
48 database %{dictname} {
49         data  \"$dictprefix.dict\"
50         index \"$dictprefix.index\"
51 }" > $RPM_BUILD_ROOT%{_sysconfdir}/dictd/%{dictname}.dictconf
52 mv %{dictname}.* $RPM_BUILD_ROOT%{_datadir}/dictd
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %post
58 if [ -f /var/lock/subsys/dictd ]; then
59         /etc/rc.d/init.d/dictd restart 1>&2
60 fi
61
62 %postun
63 if [ -f /var/lock/subsys/dictd ]; then
64         /etc/rc.d/init.d/dictd restart 1>&2 || true
65 fi
66
67 %files
68 %defattr(644,root,root,755)
69 %doc usr/local/share/mova/Mueller7.txt
70 %lang(ru) %doc usr/local/share/mova/Mueller7_koi.txt
71 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/dictd/%{dictname}.dictconf
72 %{_datadir}/dictd/%{dictname}.*
This page took 0.059486 seconds and 2 git commands to generate.