]> git.pld-linux.org Git - packages/dict-bouvier.git/blob - dict-bouvier.spec
- converted to UTF-8
[packages/dict-bouvier.git] / dict-bouvier.spec
1 Summary:        John Bouvier's Law Dictionary dated 1856 for the USA in the DICTD format
2 Summary(pl.UTF-8):   Słownik prawa USA Johna Bouviera z 1856 roku w formacie DICTD
3 Name:           dict-bouvier
4 Version:        6
5 Release:        3
6 License:        GPL
7 # it was downloaded from http://www.constitution.org/bouv/bouvier.htm
8 # Upstream Author(s): John Bouvier, 1856.
9 # Copyright claims to this work have expired; it is now public domain.
10 # so it's compatible w/ Gnu GPL ???
11 Group:          Applications/Dictionaries
12 Source0:        %{name}_%{version}.tar.gz
13 # Source0-md5:  1c03c5338e6fb5223b0ce341d0ca38ac
14 Patch0:         %{name}_%{version}.revised-1.diff
15 # from debian
16 URL:            http://www.constitution.org/bouv/bouvier.htm
17 BuildRequires:  dictzip
18 BuildRequires:  python
19 BuildRequires:  python-dictlib
20 Requires:       %{_sysconfdir}/dictd
21 Requires:       dictd
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 This is the 1856 Revised Sixth Edition of John Bouvier's law
26 dictionary, formatted for use with the dictd server. It is an
27 excellent, if dated, way to look up information about legal words and
28 principles.
29
30 %description -l pl.UTF-8
31 Jest to szóste wydanie słownika prawa amerykańskiego z 1856 roku,
32 autorstwa Johna Bouviera. Jest wspaniałym źródłem informacji o prawie
33 z tamtych czasów.
34
35 %prep
36 %setup -n %{name}-%{version}.revised.orig -q
37 %patch0 -p1
38
39 %build
40
41 python conv.py *.txt
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45 install -d $RPM_BUILD_ROOT{%{_datadir}/dictd/,%{_sysconfdir}/dictd}
46
47 %clean
48 rm -rf $RPM_BUILD_ROOT
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 %postun
56 if [ -f /var/lock/subsys/dictd ]; then
57         /etc/rc.d/init.d/dictd restart 1>&2 || true
58 fi
59
60 %files
61 %defattr(644,root,root,755)
62 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/dictd/bouvier*
63 %{_datadir}/dictd/bouvier*
This page took 0.060795 seconds and 4 git commands to generate.