Toshaan Bharvani
2 years ago
commit
e31bb3f9fc
2 changed files with 136 additions and 0 deletions
@ -0,0 +1,136 @@ |
|||||||
|
Name: xcb-util-cursor |
||||||
|
Version: 0.1.3 |
||||||
|
Release: 15%{?dist} |
||||||
|
Summary: Cursor library on top of libxcb |
||||||
|
License: MIT |
||||||
|
URL: http://xcb.freedesktop.org |
||||||
|
Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2 |
||||||
|
BuildRequires: make |
||||||
|
BuildRequires: gcc |
||||||
|
BuildRequires: pkgconfig(xcb-util) >= 0.3.8 |
||||||
|
BuildRequires: pkgconfig(xcb-render) |
||||||
|
BuildRequires: pkgconfig(xcb-renderutil) |
||||||
|
BuildRequires: pkgconfig(xcb-image) |
||||||
|
BuildRequires: m4 |
||||||
|
|
||||||
|
%description |
||||||
|
XCB util-cursor module provides the following libraries: |
||||||
|
|
||||||
|
- cursor: port of libxcursor |
||||||
|
|
||||||
|
|
||||||
|
%package devel |
||||||
|
Summary: Development and header files for xcb-util-cursos |
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release} |
||||||
|
|
||||||
|
%description devel |
||||||
|
Development files for xcb-util-cursor. |
||||||
|
|
||||||
|
|
||||||
|
%prep |
||||||
|
%setup -q |
||||||
|
|
||||||
|
|
||||||
|
%build |
||||||
|
%configure --with-pic --disable-static --disable-silent-rules |
||||||
|
make %{?_smp_mflags} |
||||||
|
|
||||||
|
|
||||||
|
%check |
||||||
|
make check |
||||||
|
|
||||||
|
|
||||||
|
%install |
||||||
|
make install DESTDIR=%{buildroot} INSTALL="install -p" |
||||||
|
rm %{buildroot}%{_libdir}/*.la |
||||||
|
|
||||||
|
|
||||||
|
%ldconfig_post |
||||||
|
|
||||||
|
|
||||||
|
%ldconfig_postun |
||||||
|
|
||||||
|
|
||||||
|
%files |
||||||
|
%doc README |
||||||
|
%license COPYING |
||||||
|
%{_libdir}/*.so.* |
||||||
|
|
||||||
|
|
||||||
|
%files devel |
||||||
|
%doc NEWS |
||||||
|
%{_libdir}/pkgconfig/*.pc |
||||||
|
%{_libdir}/*.so |
||||||
|
%{_includedir}/xcb/*.h |
||||||
|
|
||||||
|
|
||||||
|
%changelog |
||||||
|
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-15 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-14 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-13 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-12 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild |
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-11 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-10 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-9 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild |
||||||
|
|
||||||
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-8 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-7 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Jun 29 2018 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.3-6 |
||||||
|
- Use ldconfig scriptlet macros. |
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-5 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-4 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild |
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.3-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon May 30 2016 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.3-1 |
||||||
|
- Update to 0.1.3. |
||||||
|
|
||||||
|
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.1.2-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild |
||||||
|
|
||||||
|
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-2 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild |
||||||
|
|
||||||
|
* Thu Apr 2 2015 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.2-1 |
||||||
|
- Update to 0.1.2. |
||||||
|
- Mark COPYING as %%license. |
||||||
|
|
||||||
|
* Wed Oct 22 2014 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.1-5 |
||||||
|
- Include COPYING. |
||||||
|
|
||||||
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-4 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild |
||||||
|
|
||||||
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-3 |
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild |
||||||
|
|
||||||
|
* Mon Mar 17 2014 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.1-2 |
||||||
|
- Disable silent build, as suggested in the review. |
||||||
|
|
||||||
|
* Mon Mar 10 2014 Thomas Moschny <thomas.moschny@gmx.de> - 0.1.1-1 |
||||||
|
- New package. |
Loading…
Reference in new issue