]> git.pld-linux.org Git - packages/gspell.git/blob - gspell.spec
85c619c8bb98fdf00b2e772f6eabef09035131d7
[packages/gspell.git] / gspell.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # static library
4
5 Summary:        gspell - a spell-checking library for GTK+
6 Summary(pl.UTF-8):      gspell - biblioteka sprawdzania pisowni dla GTK+
7 Name:           gspell
8 Version:        1.10.0
9 Release:        2
10 License:        LGPL v2.1+
11 Group:          X11/Libraries
12 Source0:        https://download.gnome.org/sources/gspell/1.10/%{name}-%{version}.tar.xz
13 # Source0-md5:  8c738e40e8b76ee7f614fff75d995ad4
14 URL:            https://wiki.gnome.org/Projects/gspell
15 BuildRequires:  enchant2-devel >= 2.1.3
16 BuildRequires:  gettext-tools >= 0.19.6
17 BuildRequires:  glib2-devel >= 1:2.44
18 BuildRequires:  gobject-introspection-devel >= 1.42.0
19 BuildRequires:  gtk+3-devel >= 3.20
20 BuildRequires:  gtk-doc >= 1.25
21 BuildRequires:  libicu-devel
22 BuildRequires:  pkgconfig
23 BuildRequires:  rpm-build >= 4.6
24 BuildRequires:  rpmbuild(macros) >= 1.98
25 BuildRequires:  tar >= 1:1.22
26 BuildRequires:  vala
27 BuildRequires:  xz
28 Requires:       enchant2 >= 2.1.3
29 Requires:       glib2 >= 1:2.44.0
30 Requires:       gtk+3 >= 3.20
31 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
32
33 %description
34 gspell is a spell-checking library for GTK+. It provides a flexible
35 API to implement the spell checking in a GTK+ application.
36
37
38 %description -l pl.UTF-8
39 gspell to biblioteka do sprawdzania pisowni dla GTK+. Udostępnia
40 elastyczne API do implementowania sprawdzania pisowni w aplikacjach
41 GTK+.
42
43 %package devel
44 Summary:        Header files for gspell library
45 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki gspell
46 Group:          X11/Development/Libraries
47 Requires:       %{name} = %{version}-%{release}
48 Requires:       enchant2-devel >= 2.1.3
49 Requires:       glib2-devel >= 1:2.44
50 Requires:       gtk+3-devel >= 3.20
51 Requires:       libicu-devel
52
53 %description devel
54 Header files for gspell library.
55
56 %description devel -l pl.UTF-8
57 Pliki nagłówkowe biblioteki gspell.
58
59 %package static
60 Summary:        Static gspell library
61 Summary(pl.UTF-8):      Statyczna biblioteka gspell
62 Group:          X11/Development/Libraries
63 Requires:       %{name}-devel = %{version}-%{release}
64
65 %description static
66 Static gspell library.
67
68 %description static -l pl.UTF-8
69 Statyczna biblioteka gspell.
70
71 %package apidocs
72 Summary:        API documentation for gspell library
73 Summary(pl.UTF-8):      Dokumentacja API biblioteki gspell
74 Group:          Documentation
75 BuildArch:      noarch
76
77 %description apidocs
78 API documentation for gspell library.
79
80 %description apidocs -l pl.UTF-8
81 Dokumentacja API biblioteki gspell.
82
83 %package -n vala-gspell
84 Summary:        Vala API for gspell library
85 Summary(pl.UTF-8):      API języka Vala do biblioteki gspell
86 Group:          Development/Libraries
87 Requires:       %{name}-devel = %{version}-%{release}
88 Requires:       vala
89 BuildArch:      noarch
90
91 %description -n vala-gspell
92 Vala API for gspell library.
93
94 %description -n vala-gspell -l pl.UTF-8
95 API języka Vala do biblioteki gspell.
96
97 %prep
98 %setup -q
99
100 %build
101 %configure \
102         --disable-silent-rules \
103         %{?with_static_libs:--enable-static} \
104         --with-html-dir=%{_gtkdocdir}
105
106 %{__make}
107
108 %install
109 rm -rf $RPM_BUILD_ROOT
110
111 %{__make} install \
112         DESTDIR=$RPM_BUILD_ROOT
113
114 # obsoleted by pkg-config
115 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libgspell-1.la
116
117 %find_lang gspell-1
118
119 %clean
120 rm -rf $RPM_BUILD_ROOT
121
122 %post   -p /sbin/ldconfig
123 %postun -p /sbin/ldconfig
124
125 %files -f gspell-1.lang
126 %defattr(644,root,root,755)
127 %doc AUTHORS NEWS README
128 %attr(755,root,root) %{_bindir}/gspell-app1
129 %attr(755,root,root) %{_libdir}/libgspell-1.so.*.*.*
130 %attr(755,root,root) %ghost %{_libdir}/libgspell-1.so.2
131 %{_libdir}/girepository-1.0/Gspell-1.typelib
132
133 %files devel
134 %defattr(644,root,root,755)
135 %attr(755,root,root) %{_libdir}/libgspell-1.so
136 %{_includedir}/gspell-1
137 %{_datadir}/gir-1.0/Gspell-1.gir
138 %{_pkgconfigdir}/gspell-1.pc
139
140 %if %{with static_libs}
141 %files static
142 %defattr(644,root,root,755)
143 %{_libdir}/libgspell-1.a
144 %endif
145
146 %files apidocs
147 %defattr(644,root,root,755)
148 %{_gtkdocdir}/gspell-1.0
149
150 %files -n vala-gspell
151 %defattr(644,root,root,755)
152 %{_datadir}/vala/vapi/gspell-1.deps
153 %{_datadir}/vala/vapi/gspell-1.vapi
This page took 0.163083 seconds and 2 git commands to generate.