xcb-util-keysyms-vl.spec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. Name: xcb-util-keysyms
  2. Version: 0.4.0
  3. Release: 2%{?_dist_release}
  4. Summary: XCB util-keysyms 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. %description
  14. XCB util-keysyms module provides the following library:
  15. - keysyms: Standard X key constants and conversion to/from keycodes.
  16. %package devel
  17. Summary: Development and header files for %{name}
  18. Summary(ja): %{name} の開発用ファイル
  19. Group: programming
  20. Requires: %{name} = %{version}-%{release}
  21. Requires: pkgconfig
  22. %description devel
  23. Development files for %{name}.
  24. %debug_package
  25. %prep
  26. %setup -q
  27. %build
  28. %configure --with-pic --disable-static
  29. make %{?_smp_mflags}
  30. %check
  31. make check
  32. %install
  33. rm -rf %{buildroot}
  34. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
  35. rm %{buildroot}%{_libdir}/*.la
  36. %clean
  37. rm -rf %{buildroot}
  38. %files
  39. %defattr(-,root,root,-)
  40. %doc NEWS README
  41. %{_libdir}/libxcb-keysyms.so.*
  42. %files devel
  43. %defattr(-,root,root,-)
  44. %{_libdir}/pkgconfig/xcb-keysyms.pc
  45. %{_libdir}/libxcb-keysyms.so
  46. %{_includedir}/xcb/xcb_keysyms.h
  47. %changelog
  48. * Tue Sep 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.4.0-2
  49. - rebuilt with current environment.
  50. - dropped ldconfig scriptlets.
  51. * Fri Oct 31 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.4.0-1
  52. - new upstream release
  53. - moved devel package to Development/Libraries Group
  54. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  55. - rebuild with VineSeed environment
  56. * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-1
  57. - initial build