]> git.pld-linux.org Git - packages/gspell.git/blob - gspell.spec
noarch vala subpackage
[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:        2
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:  tar >= 1:1.22
24 BuildRequires:  vala
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 %if "%{_rpmversion}" >= "5"
87 BuildArch:      noarch
88 %endif
89
90 %description -n vala-gspell
91 Vala API for gspell library.
92
93 %description -n vala-gspell -l pl.UTF-8
94 API języka Vala do biblioteki gspell.
95
96 %prep
97 %setup -q
98
99 %build
100 %configure \
101         --disable-silent-rules \
102         %{?with_static_libs:--enable-static} \
103         --with-html-dir=%{_gtkdocdir}
104
105 %{__make}
106
107 %install
108 rm -rf $RPM_BUILD_ROOT
109
110 %{__make} install \
111         DESTDIR=$RPM_BUILD_ROOT
112
113 # obsoleted by pkg-config
114 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libgspell-1.la
115
116 %find_lang gspell-1
117
118 %clean
119 rm -rf $RPM_BUILD_ROOT
120
121 %post   -p /sbin/ldconfig
122 %postun -p /sbin/ldconfig
123
124 %files -f gspell-1.lang
125 %defattr(644,root,root,755)
126 %doc AUTHORS NEWS README
127 %attr(755,root,root) %{_libdir}/libgspell-1.so.*.*.*
128 %attr(755,root,root) %ghost %{_libdir}/libgspell-1.so.0
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.042733 seconds and 4 git commands to generate.