]> git.pld-linux.org Git - packages/glade.git/blame - glade.spec
- updated to 3.18.1
[packages/glade.git] / glade.spec
CommitLineData
4fc8d865
MB
1#
2# Conditional build:
3%bcond_without apidocs # do not build and package API docs
4%bcond_without static_libs # don't build static libraries
5#
6Summary: User interface builder for GTK+ and GNOME
7Summary(pl.UTF-8): Budowniczy interfejsów użytkownika dla GTK+ i GNOME
8Name: glade
397e55b8 9Version: 3.18.1
74452e09 10Release: 1
dbfea978 11License: GPL v2+ and LGPL v2.1+
4fc8d865 12Group: X11/Applications
397e55b8
ŁK
13Source0: http://ftp.gnome.org/pub/GNOME/sources/glade/3.18/%{name}-%{version}.tar.xz
14# Source0-md5: 3c61ab3df62de850f1ff676ef34c6ed1
4fc8d865
MB
15URL: http://glade.gnome.org/
16BuildRequires: autoconf >= 2.52
17BuildRequires: automake >= 1:1.11
dbfea978 18BuildRequires: gettext-devel >= 0.17
4fc8d865 19BuildRequires: gnome-common
3c11da34 20BuildRequires: gobject-introspection-devel >= 1.32.0
397e55b8 21BuildRequires: gtk+3-devel >= 3.12.0
dbfea978 22BuildRequires: gtk-doc >= 1.13
4fc8d865
MB
23BuildRequires: intltool >= 0.41.0
24BuildRequires: libtool >= 2:2.2.6
dbfea978 25BuildRequires: libxml2-devel >= 2.4.0
3c11da34 26BuildRequires: libxslt-progs
4fc8d865 27BuildRequires: pkgconfig
3c11da34 28BuildRequires: python-pygobject3-devel >= 3.8.0
4fc8d865
MB
29BuildRequires: rpmbuild(find_lang) >= 1.23
30BuildRequires: rpmbuild(macros) >= 1.311
53b4395c
AF
31BuildRequires: tar >= 1:1.22
32BuildRequires: xz
c071c69b 33BuildRequires: yelp-tools
4fc8d865 34Requires(post,postun): gtk-update-icon-cache
f028f8ed 35Requires(post,postun): desktop-file-utils
4fc8d865
MB
36Requires: %{name}-libs = %{version}-%{release}
37Requires: hicolor-icon-theme
0f59bb0f 38Conflicts: glade3 < 3.8.2
4fc8d865
MB
39BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
40
41%description
42Glade is a RAD tool to enable quick & easy development of user
43interfaces for the GTK+ toolkit and the GNOME desktop environment.
44
45The user interfaces designed in Glade are saved as XML, and by using
46the GtkBuilder GTK+ object these can be loaded by applications
47dynamically as needed.
48
49By using GtkBuilder, Glade XML files can be used in numerous
50programming languages including C, C++, C#, Vala, Java, Perl, Python
51and others.
52
53%description -l pl.UTF-8
54Glade jest narzędziem typu RAD (Rapid Application Development) do
55szybkiego i wygodnego tworzenia interfejsów użytkownika opartych o
56bibliotekę GTK+ i środowisko GNOME.
57
58Interfejsy użytkownika zaprojektowane w Glade są zapisywane w formacie
59XML i poprzez użycie obiektu GtkBuilder, z biblioteki GTK+, mogą być
60dynamicznie ładowane przez aplikacje.
61
62Poprzez użycie GtkBuilder, pliki XML Glade mogą być używane w licznych
63językach programowania, włączając C, C++, C#, Vala, Java, Perl, Python
64i inne.
65
66%package libs
67Summary: Glade library
68Summary(pl.UTF-8): Biblioteka Glade
69Group: X11/Libraries
397e55b8 70Requires: gtk+3 >= 3.12.0
dbfea978 71Requires: libxml2 >= 2.4.0
4fc8d865
MB
72
73%description libs
74Glade library.
75
76%description libs -l pl.UTF-8
77Biblioteka Glade.
78
79%package devel
80Summary: Header files for Glade library
81Summary(pl.UTF-8): Pliki nagłówkowe biblioteki Glade
82Group: X11/Development/Libraries
83Requires: %{name}-libs = %{version}-%{release}
397e55b8 84Requires: gtk+3-devel >= 3.12.0
dbfea978 85Requires: libxml2-devel >= 2.4.0
4fc8d865
MB
86
87%description devel
88Header files for Glade library.
89
90%description devel -l pl.UTF-8
91Pliki nagłówkowe biblioteki Glade.
92
93%package static
94Summary: Static Glade library
95Summary(pl.UTF-8): Statyczna biblioteka Glade
96Group: X11/Development/Libraries
97Requires: %{name}-devel = %{version}-%{release}
98
99%description static
100Static Glade library.
101
102%description static -l pl.UTF-8
103Statyczna biblioteka Glade.
104
105%package apidocs
106Summary: Glade API documentation
107Summary(pl.UTF-8): Dokumentacja API biblioteki Glade
108Group: Documentation
109Requires: gtk-doc-common
110
111%description apidocs
112Glade API documentation.
113
114%description apidocs -l pl.UTF-8
115Dokumentacja API biblioteki Glade.
116
117%prep
118%setup -q
119
120%build
121%{__intltoolize}
122%{__libtoolize}
123%{__aclocal} -I m4
124%{__autoconf}
125%{__autoheader}
126%{__automake}
127%configure \
128 --disable-silent-rules \
129 %{__enable_disable apidocs gtk-doc} \
130 %{__enable_disable static_libs static} \
131 --with-html-dir=%{_gtkdocdir}
132%{__make}
133
134%install
135rm -rf $RPM_BUILD_ROOT
136
137%{__make} install \
138 DESTDIR=$RPM_BUILD_ROOT
139
dbfea978 140%{__rm} $RPM_BUILD_ROOT%{_libdir}/glade/modules/*.{a,la}
4fc8d865
MB
141
142%{__rm} $RPM_BUILD_ROOT%{_libdir}/*.la
143
dbfea978 144%find_lang %{name} --with-gnome
4fc8d865
MB
145
146%clean
147rm -rf $RPM_BUILD_ROOT
148
149%post
150%update_icon_cache hicolor
f028f8ed 151%update_desktop_database_post
4fc8d865
MB
152
153%postun
154%update_icon_cache hicolor
f028f8ed 155%update_desktop_database_postun
4fc8d865 156
dbfea978 157%post libs -p /sbin/ldconfig
4fc8d865
MB
158%postun libs -p /sbin/ldconfig
159
160%files -f %{name}.lang
161%defattr(644,root,root,755)
dbfea978
JB
162# NOTE: COPYING contains general notes; full GPL and LGPL texts are in COPYING.{GPL,LGPL}
163%doc AUTHORS COPYING ChangeLog NEWS README TODO
4fc8d865
MB
164%attr(755,root,root) %{_bindir}/glade
165%attr(755,root,root) %{_bindir}/glade-previewer
166%dir %{_libdir}/glade
167%dir %{_libdir}/glade/modules
168%attr(755,root,root) %{_libdir}/glade/modules/libgladegtk.so
169%attr(755,root,root) %{_libdir}/glade/modules/libgladepython.so
170%{_datadir}/glade
171%{_desktopdir}/glade.desktop
dbfea978 172%{_iconsdir}/hicolor/*/apps/glade.png
3c11da34
AF
173%{_datadir}/appdata/glade.appdata.xml
174%{_mandir}/man1/glade-previewer.1*
175%{_mandir}/man1/glade.1*
4fc8d865
MB
176
177%files libs
178%defattr(644,root,root,755)
179%attr(755,root,root) %{_libdir}/libgladeui-2.so.*.*.*
3c11da34 180%attr(755,root,root) %ghost %{_libdir}/libgladeui-2.so.6
4fc8d865
MB
181%{_libdir}/girepository-1.0/Gladeui-2.0.typelib
182
183%files devel
184%defattr(644,root,root,755)
185%attr(755,root,root) %{_libdir}/libgladeui-2.so
186%{_datadir}/gir-1.0/Gladeui-2.0.gir
187%{_includedir}/libgladeui-2.0
188%{_pkgconfigdir}/gladeui-2.0.pc
189
190%if %{with static_libs}
191%files static
192%defattr(644,root,root,755)
193%{_libdir}/libgladeui-2.a
194%endif
195
196%if %{with apidocs}
197%files apidocs
198%defattr(644,root,root,755)
8e05174c 199%{_gtkdocdir}/gladeui-2
4fc8d865 200%endif
This page took 0.085424 seconds and 4 git commands to generate.