]> git.pld-linux.org Git - packages/aspell.git/blob - aspell.spec
48258a60d6ba446cb71ef1c50e6f0c3993c24c59
[packages/aspell.git] / aspell.spec
1 Summary:        Aspell is an Open Source spell checker.
2 Name:           aspell
3 Version:        .27.2
4 Release:        3
5 Serial:         1
6 Copyright:      LGPL
7 Group:          Utilities/Text
8 Group(pl):      Narzêdzia/Tekst
9 URL:            http://metalab.unc.edu/kevina/aspell
10 Vendor:         Kevin Atkinson <kevinatk@home.com>
11 Source:         %{name}-%{version}.tar.gz
12 BuildRoot:      /tmp/%{name}-%{version}-root
13
14 %description
15  Aspell is an Open Source spell checker designed to eventually replace
16  Ispell. Its main feature is that it does a much better job of coming
17  up with possible suggestions than Ispell does. In fact recent tests
18  shows that it even does better than Microsoft Word 97's spell checker
19  in some cases. In addition it has both compile time and run time
20  support for other non English languages. Aspell also doubles as a
21  powerful C++ library with C and Perl interfaces in the works.
22
23 %package        devel
24 Summary:        Libraries and header files for aspell development
25 Group:          Development/Libraries
26 Group(pl):      Programowanie/Biblioteki
27 Serial:         %{serial}
28 Requires:       %{name} = %{version}
29
30 %description    devel
31  Aspell is an Open Source spell checker.
32
33  Libraries and header files for aspell development
34
35 %package        static
36 Summary:        Static Libraries for aspell development
37 Group:          Development/Libraries
38 Group(pl):      Programowanie/Biblioteki
39 Serial:         %{serial}
40 Requires:       %{name}-devel = %{version}
41
42 %description    static
43  Aspell is an Open Source spell checker.
44
45  Static Libraries for aspell development
46
47 %prep
48 %setup -q
49
50 cp -p /usr/include/g++/stl_rope.h .
51 patch <misc/stl_rope-30.diff
52
53 %build
54 %configure --enable-static
55 make
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59 install -p $RPM_BUILD_ROOT
60
61 make DESTDIR=$RPM_BUILD_ROOT install-strip
62
63 cp -pr $RPM_BUILD_ROOT/usr/doc/aspell .
64
65 %post -p /sbin/ldconfig
66
67 %postun -p /sbin/ldconfig
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %files
73 %defattr(644,root,root,755)
74 %doc README TODO aspell/*
75 %attr(755,root,root) /usr/bin/aspell
76 %attr(755,root,root) /usr/bin/run-with-aspell
77 /usr/lib/aspell
78 /usr/lib/libaspell.so.*.*
79
80 %files  devel
81 %defattr(644,root,root,755)
82 %attr(755,root,root) /usr/lib/libaspell.so
83 /usr/include/aspell
84 /usr/lib/libaspell.la
85
86 %files static
87 %defattr(644,root,root,755)
88 /usr/lib/libaspell.a
89
90 %changelog
91 * Fri Apr 30 1999 Artur Frysiak <wiget@pld.org.pl>
92   [.27.2-3]
93 - added static subpackage
94 - full %%attr description
95 - partial pl translation
96
97 * Tue Mar  2 1999 Ryan Weaver <ryanw@infohwy.com>
98   [aspell-.27.2-2]
99 - Changes from .27.1 to .27.2 (Mar 1, 1999)
100 - Fixed a major bug that caused aspell to dump core when used
101   without any arguments
102 - Fixed another major bug that caused aspell to do nothing when used
103   in interactive mode.
104 - Added an option to exit in Aspell's interactive mode.
105 - Removed some old documentation files from the distribution.
106 - Minor changes on to the section on using Aspell with egcs.
107 - Minor changes to remove -Wall warnings.
This page took 0.076202 seconds and 2 git commands to generate.