]> git.pld-linux.org Git - packages/aspell.git/blob - aspell.spec
- merge translations from Conectiva.
[packages/aspell.git] / aspell.spec
1 Summary:        GNU Aspell is an Open Source spell checker
2 Summary(pl):    GNU Aspell jest kontrolerem pisowni
3 Summary(pt_BR): Verificador ortográfico
4 Name:           aspell
5 Version:        0.50.3
6 Release:        1.1
7 Epoch:          2
8 License:        LGPL
9 Group:          Applications/Text
10 Vendor:         Kevin Atkinson <kevina@gnu.org>
11 Source0:        ftp://ftp.gnu.org/gnu/aspell/%{name}-%{version}.tar.gz
12 URL:            http://aspell.net/
13 BuildRequires:  autoconf
14 BuildRequires:  automake
15 BuildRequires:  libstdc++-devel
16 BuildRequires:  libtool >= 2:1.4e-0.20021218.3
17 BuildRequires:  gettext-devel
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19 Provides:       pspell = %{epoch}:%{version}-%{release}
20 Obsoletes:      libaspell15
21 Obsoletes:      pspell
22
23 %description
24 GNU Aspell is a Free and Open Source spell checker designed to
25 eventually replace Ispell. It can either be used as a library or as an
26 independent spell checker. Its main feature is that it does a much
27 better job of coming up with possible suggestions than just about any
28 other spell checker out there for the English language, including
29 Ispell and Microsoft Word. It also has many other technical
30 enhancements over Ispell such as using shared memory for dictionaries
31 and intelligently handling personal dictionaries when more than one
32 Aspell process is open at once.
33
34 %description -l pl
35 GNU Aspell jest kontrolerem pisowni zaprojektowanym tak, by móc
36 zast±piæ ispella. Dodatkowo zawiera wsparcie dla innych jêzyków ni¿
37 angielski. Interfejs aspella napisany zosta³ w C++, a interfejsy w
38 Perlu i C s± aktualnie rozwijane.
39
40 %description -l pt_BR
41 GNU Aspell é um verificador ortográfico criado para substituir o
42 antigo "ispell". Sua principal vantagem (sobre o Ispell) é uma melhor
43 sugestão de correções. Aspell inclui suporte a vários idiomas e pode
44 fazer a checagem de arquivos LaTeX e HTML.
45
46 %package devel
47 Summary:        Header files for aspell development
48 Summary(pl):    Pliki nag³ówkowe dla programistów u¿ywaj±cych aspella
49 Summary(pt_BR): Arquivos para desenvolvimento usando Aspell
50 Group:          Development/Libraries
51 Requires:       %{name} = %{version}
52 Provides:       pspell-devel = %{epoch}:%{version}-%{release}
53 Obsoletes:      libaspell15-devel
54 Obsoletes:      pspell-devel
55
56 %description devel
57 Aspell is an Open Source spell checker. This package contains header
58 files for aspell development.
59
60 %description devel -l pl
61 Aspell jest kontrolerem pisowni. Ten pakiet zawiera pliki nag³ówkowe
62 dla programistów u¿ywaj±cych bibliotek aspella.
63
64 %description devel -l pt_BR
65 Aspell é um corretor ortográfico. O pacote -devel inclui bibliotecas
66 dinâmicas e arquivos de inclusão necessários para o desenvolvimento
67 utilizando o aspell.
68
69 %package static
70 Summary:        Static libraries for aspell development
71 Summary(pl):    Biblioteki statyczne aspella
72 Summary(pt_BR): Bibliotecas estáticas para desenvolvimento usando Aspell
73 Group:          Development/Libraries
74 Requires:       %{name}-devel = %{version}
75 Obsoletes:      pspell-static
76 Provides:       pspell-static = %{epoch}:%{version}-%{release}
77
78 %description static
79 Aspell is an Open Source spell checker. This package contains static
80 aspell libraries.
81
82 %description static -l pl
83 Aspell jest kontrolerem pisowni. Pakiet ten zawiera biblioteki
84 statyczne aspella.
85
86 %description static -l pt_BR
87 Aspell é um corretor ortográfico. O pacote -devel-static inclui as
88 bibliotecas estáticas necessárias para o desenvolvimento utilizando o
89 aspell.
90
91 %prep
92 %setup -q
93
94 %build
95 %{__libtoolize}
96 %{__aclocal}
97 %{__autoconf}
98 %{__automake}
99 %configure \
100         --enable-shared \
101         --enable-static
102
103 %{__make}
104
105 %install
106 rm -rf $RPM_BUILD_ROOT
107 install -d $RPM_BUILD_ROOT%{_libdir}/aspell
108
109 %{__make} install \
110         DESTDIR=$RPM_BUILD_ROOT
111
112 rm -f $RPM_BUILD_ROOT{%{_bindir}/run-with-aspell,%{_datadir}/aspell/{i,}spell}
113
114 %clean
115 rm -rf $RPM_BUILD_ROOT
116
117 %post   -p /sbin/ldconfig
118 %postun -p /sbin/ldconfig
119
120 %files
121 %defattr(644,root,root,755)
122 %doc README manual/man-html/*.{html,png,css}
123 %attr(755,root,root) %{_bindir}/a*
124 %attr(755,root,root) %{_bindir}/w*
125 %attr(755,root,root) %{_libdir}/lib*.so.*.*
126 %{_datadir}/aspell
127 %dir %{_libdir}/aspell
128
129 %files devel
130 %defattr(644,root,root,755)
131 %doc manual/dev-html/*.{html,png,css}
132 %attr(755,root,root) %{_bindir}/p*
133 %attr(755,root,root) %{_libdir}/lib*.so
134 %{_libdir}/lib*.la
135 %{_includedir}/pspell
136 %{_includedir}/*.h
137
138 %files static
139 %defattr(644,root,root,755)
140 %{_libdir}/lib*.a
This page took 0.043393 seconds and 3 git commands to generate.