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