]> git.pld-linux.org Git - packages/dict-jargon.git/blob - dict-jargon.spec
06046851dcce97a632b26bea14194375090fe6b1
[packages/dict-jargon.git] / dict-jargon.spec
1 %define         dictname jargon
2 Summary:        The On-Line Hacker Jargon File dictionary for dictd
3 Name:           dict-%{dictname}
4 Version:        4.2.0
5 Release:        2
6 License:        GPL
7 Group:          Applications/Dictionaries
8 Group(pl):      Aplikacje/S³owniki
9 URL:            http://www.dict.org/
10 Source0:        ftp://ftp.dict.org/pub/dict/%{name}-%{version}.tar.gz
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12 BuildRequires:  dictzip
13 BuildRequires:  autoconf
14 Requires:       dictd 
15 Requires:       %{_sysconfdir}/dictd
16
17 %description 
18 This package contains The On-Line Hacker Jargon File, version 4.2.0,
19 formatted for use by the dictionary server in the dictd package.
20
21 %prep
22 %setup -q
23
24 %build
25 autoconf
26 %configure 
27 %{__make} db 
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31 install -d $RPM_BUILD_ROOT{%{_datadir}/dictd/,%{_sysconfdir}/dictd}
32 %{__make} install dictdir="$RPM_BUILD_ROOT%{_datadir}/dictd/"
33
34 dictprefix=%{_datadir}/dictd/%{dictname}
35 echo "# The On-Line Hacker Jargon File dictionary
36 database %{dictname} {
37     data  \"$dictprefix.dict.dz\"
38     index \"$dictprefix.index\" 
39 }
40 " > $RPM_BUILD_ROOT%{_sysconfdir}/dictd/%{dictname}.dictconf
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %postun
46 if [ -f /var/lock/subsys/dictd ]; then
47         /etc/rc.d/init.d/dictd restart 1>&2
48 fi
49
50 %post
51 if [ -f /var/lock/subsys/dictd ]; then
52         /etc/rc.d/init.d/dictd restart 1>&2
53 fi
54
55 %files
56 %defattr(644,root,root,755)
57 %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/dictd/*.dictconf
58 %{_datadir}/dictd/%{dictname}*
This page took 0.057647 seconds and 2 git commands to generate.