]> git.pld-linux.org Git - packages/gaspell.git/blob - gaspell.spec
8d5c59f312f5b3d2d15f85167578635edf684124
[packages/gaspell.git] / gaspell.spec
1 Summary:        Gnome frontend to the Aspell library.
2 Name:           gaspell
3 Version:        .28.5
4 Release:        1
5 License:        GPL
6 Group:          Applications/Text
7 Vendor:         Kevin Atkinson <kevinatk@home.com>
8 Source:         %{name}-%{version}.tar.gz
9 URL:            http://metalab.unc.edu/kevina/aspell
10 BuildRoot:      /tmp/%{name}-%{version}-root
11 Requires:       aspell
12
13 %description
14 Gnome frontend to the Aspell library. Or put another way a simple spell
15 checker that does a way better job than ispell does with coming up with
16 suggestions.
17
18 %prep
19 %setup -q
20
21 %build
22 make CXXFLAGS=$RPM_OPT_FLAGS ASPELL_PREFIX=/usr
23
24 %install
25 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
26 install -d $RPM_BUILD_ROOT/usr/bin
27 install -s -m 755 gaspell $RPM_BUILD_ROOT/usr/bin
28
29 %clean
30 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
31
32 %files
33 %defattr(644,root,root,755)
34 %doc ChangeLog README TODO
35 /usr/bin/gaspell
This page took 0.056145 seconds and 2 git commands to generate.