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