]> git.pld-linux.org Git - packages/libgnome-games-support.git/blob - libgnome-games-support.spec
9291b650714f0516b087297bf3e955d1c8a3dc00
[packages/libgnome-games-support.git] / libgnome-games-support.spec
1 #
2 # Conditional build:
3 %bcond_without  static_libs     # static library
4
5 Summary:        Support library for GNOME games
6 Summary(pl.UTF-8):      Biblioteka wspierająca dla gier GNOME
7 Name:           libgnome-games-support
8 Version:        1.2.0
9 Release:        1
10 License:        LGPL v3+
11 Group:          X11/Libraries
12 Source0:        http://ftp.gnome.org/pub/GNOME/sources/libgnome-games-support/1.2/%{name}-%{version}.tar.xz
13 # Source0-md5:  faedf9fbea367623314eb70f58017a24
14 BuildRequires:  autoconf >= 2.69
15 BuildRequires:  automake >= 1:1.11
16 BuildRequires:  gettext-tools >= 0.19.8
17 BuildRequires:  glib2-devel >= 1:2.40.0
18 BuildRequires:  gtk+3-devel >= 3.20.0
19 BuildRequires:  libgee-devel >= 0.8
20 BuildRequires:  libtool >= 2:2.2
21 BuildRequires:  pkgconfig
22 BuildRequires:  vala >= 2:0.24.0
23 Requires:       glib2 >= 1:2.40.0
24 Requires:       gtk+3 >= 3.20.0
25 Provides:       libgames-support = %{version}-%{release}
26 Obsoletes:      libgames-support < 1.2.0-1
27 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
28
29 %description
30 libgnome-games-support is a small library intended for internal use by
31 GNOME Games, but it may be used by others. The API will only break
32 with the major version number. The ABI is unstable.
33
34 %description -l pl.UTF-8
35 libgnome-games-support to mała biblioteka przeznaczona do użytku
36 wewnętrznego gier ze środowiska GNOME, ale może być wykorzystywana
37 także przez innych. API może się zmieniać tylko wraz z głównym numerem
38 wersji; ABI nie jest stabilne.
39
40 %package devel
41 Summary:        Header files for libgnome-games-support library
42 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libgnome-games-support
43 Group:          Development/Libraries
44 Requires:       %{name} = %{version}-%{release}
45 Requires:       glib2-devel >= 1:2.40.0
46 Requires:       gtk+3-devel >= 3.20.0
47 Provides:       libgames-support-devel = %{version}-%{release}
48 Obsoletes:      libgames-support-devel < 1.2.0-1
49
50 %description devel
51 Header files for libgnome-games-support library.
52
53 %description devel -l pl.UTF-8
54 Pliki nagłówkowe biblioteki libgnome-games-support.
55
56 %package static
57 Summary:        Static libgnome-games-support library
58 Summary(pl.UTF-8):      Statyczna biblioteka libgnome-games-support
59 Group:          Development/Libraries
60 Requires:       %{name}-devel = %{version}-%{release}
61 Provides:       libgames-support-static = %{version}-%{release}
62 Obsoletes:      libgames-support-static < 1.2.0-1
63
64 %description static
65 Static libgnome-games-support library.
66
67 %description static -l pl.UTF-8
68 Statyczna biblioteka libgnome-games-support.
69
70 %package -n vala-libgnome-games-support
71 Summary:        Vala API for libgnome-games-support library
72 Summary(pl.UTF-8):      API języka Vala do bibliotek libgnome-games-support
73 Group:          Development/Libraries
74 Requires:       %{name}-devel = %{version}-%{release}
75 Provides:       vala-libgames-support = %{version}-%{release}
76 Obsoletes:      vala-libgames-support < 1.2.0-1
77 %if "%{_rpmversion}" >= "5"
78 BuildArch:      noarch
79 %endif
80
81 %description -n vala-libgnome-games-support
82 Vala API for libgnome-games-support library.
83
84 %description -n vala-libgnome-games-support -l pl.UTF-8
85 API języka Vala do bibliotek libgnome-games-support.
86
87 %prep
88 %setup -q
89
90 %build
91 %{__libtoolize}
92 %{__aclocal} -I m4
93 %{__autoconf}
94 %{__automake}
95 %configure \
96         --disable-silent-rules \
97         %{?with_static_libs:--enable-static}
98 %{__make}
99
100 %install
101 rm -rf $RPM_BUILD_ROOT
102
103 %{__make} install \
104         DESTDIR=$RPM_BUILD_ROOT
105
106 %{__rm} $RPM_BUILD_ROOT%{_libdir}/*.la
107
108 %find_lang %{name}
109
110 %clean
111 rm -rf $RPM_BUILD_ROOT
112
113 %post   -p /sbin/ldconfig
114 %postun -p /sbin/ldconfig
115
116 %files -f %{name}.lang
117 %defattr(644,root,root,755)
118 %doc NEWS README
119 %attr(755,root,root) %{_libdir}/libgnome-games-support-1.so.*.*.*
120 %attr(755,root,root) %ghost %{_libdir}/libgnome-games-support-1.so.2
121
122 %files devel
123 %defattr(644,root,root,755)
124 %attr(755,root,root) %{_libdir}/libgnome-games-support-1.so
125 %{_includedir}/gnome-games-support-1
126 %{_pkgconfigdir}/libgnome-games-support-1.pc
127
128 %if %{with static_libs}
129 %files static
130 %defattr(644,root,root,755)
131 %{_libdir}/libgnome-games-support-1.a
132 %endif
133
134 %files -n vala-libgnome-games-support
135 %defattr(644,root,root,755)
136 %{_datadir}/vala/vapi/libgnome-games-support-1.vapi
This page took 0.071128 seconds and 3 git commands to generate.