]> git.pld-linux.org Git - packages/gspell.git/blob - gspell.spec
- updated to 0.2.3
[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:        0.2.3
9 Release:        1
10 License:        LGPL v2.1+
11 Group:          X11/Libraries
12 Source0:        http://ftp.gnome.org/pub/GNOME/sources/gspell/0.2/%{name}-%{version}.tar.xz
13 # Source0-md5:  534cc1705c5dabafc19df96f01c59001
14 URL:            https://wiki.gnome.org/Projects/gspell
15 BuildRequires:  enchant-devel >= 1.6.0
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.16
20 BuildRequires:  gtk-doc >= 1.24
21 BuildRequires:  iso-codes >= 0.35
22 BuildRequires:  pkgconfig
23 BuildRequires:  vala
24 BuildRequires:  tar >= 1:1.22
25 BuildRequires:  xz
26 Requires:       enchant >= 1.6.0
27 Requires:       glib2 >= 1:2.36.0
28 Requires:       gtk+3 >= 3.16
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:       enchant-devel >= 1.6.0
48 Requires:       glib2-devel >= 1:2.44
49 Requires:       gtk+3-devel >= 3.16
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
74 %description apidocs
75 API documentation for gspell library.
76
77 %description apidocs -l pl.UTF-8
78 Dokumentacja API biblioteki gspell.
79
80 %package -n vala-gspell
81 Summary:        Vala API for gspell library
82 Summary(pl.UTF-8):      API języka Vala do biblioteki gspell
83 Group:          Development/Libraries
84 Requires:       %{name}-devel = %{version}-%{release}
85 Requires:       vala
86
87 %description -n vala-gspell
88 Vala API for gspell library.
89
90 %description -n vala-gspell -l pl.UTF-8
91 API języka Vala do biblioteki gspell.
92
93 %prep
94 %setup -q
95
96 %build
97 %configure \
98         --disable-silent-rules \
99         %{?with_static_libs:--enable-static} \
100         --with-html-dir=%{_gtkdocdir}
101
102 %{__make}
103
104 %install
105 rm -rf $RPM_BUILD_ROOT
106
107 %{__make} install \
108         DESTDIR=$RPM_BUILD_ROOT
109
110 # obsoleted by pkg-config
111 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libgspell-1.la
112
113 %find_lang gspell-1
114
115 %clean
116 rm -rf $RPM_BUILD_ROOT
117
118 %post   -p /sbin/ldconfig
119 %postun -p /sbin/ldconfig
120
121 %files -f gspell-1.lang
122 %defattr(644,root,root,755)
123 %doc AUTHORS NEWS README
124 %attr(755,root,root) %{_libdir}/libgspell-1.so.*.*.*
125 %attr(755,root,root) %ghost %{_libdir}/libgspell-1.so.0
126 %{_libdir}/girepository-1.0/Gspell-1.typelib
127
128 %files devel
129 %defattr(644,root,root,755)
130 %attr(755,root,root) %{_libdir}/libgspell-1.so
131 %{_includedir}/gspell-1
132 %{_datadir}/gir-1.0/Gspell-1.gir
133 %{_pkgconfigdir}/gspell-1.pc
134
135 %if %{with static_libs}
136 %files static
137 %defattr(644,root,root,755)
138 %{_libdir}/libgspell-1.a
139 %endif
140
141 %files apidocs
142 %defattr(644,root,root,755)
143 %{_gtkdocdir}/gspell-1.0
144
145 %files -n vala-gspell
146 %defattr(644,root,root,755)
147 %{_datadir}/vala/vapi/gspell-1.deps
148 %{_datadir}/vala/vapi/gspell-1.vapi
This page took 0.077619 seconds and 4 git commands to generate.