xcb-util-cursor-vl.spec 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. Name: xcb-util-cursor
  2. Version: 0.1.3
  3. Release: 1%{?_dist_release}
  4. Summary: XCB util-cursor module
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: MIT
  9. URL: http://xcb.freedesktop.org
  10. Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildRequires: xcb-util-devel
  13. BuildRequires: xcb-util-image-devel
  14. BuildRequires: xcb-util-renderutil-devel
  15. %description
  16. XCB util-cursor module provides the following library:
  17. - cursor: Port of libxcursor
  18. %package devel
  19. Summary: Development and header files for %{name}
  20. Summary(ja): %{name} の開発用ファイル
  21. Group: programming
  22. Requires: %{name} = %{version}-%{release}
  23. Requires: pkgconfig
  24. %description devel
  25. Development files for %{name}.
  26. %debug_package
  27. %prep
  28. %setup -q
  29. %build
  30. %configure --with-pic --disable-static
  31. make %{?_smp_mflags}
  32. %check
  33. make check
  34. %install
  35. rm -rf %{buildroot}
  36. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
  37. rm %{buildroot}%{_libdir}/*.la
  38. %clean
  39. rm -rf %{buildroot}
  40. %files
  41. %defattr(-,root,root,-)
  42. %doc README
  43. %{_libdir}/libxcb-cursor.so.*
  44. %files devel
  45. %defattr(-,root,root,-)
  46. %{_libdir}/pkgconfig/xcb-cursor.pc
  47. %{_libdir}/libxcb-cursor.so
  48. %{_includedir}/xcb/*.h
  49. %changelog
  50. * Tue Sep 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.1.3-1
  51. - new upstream release.
  52. - dropped ldconfig scriptlets.
  53. * Fri Oct 31 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.1.1-2
  54. - moved devel package to Development/Libraries Group
  55. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.1-1
  56. - initial build