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