xcb-util-keysyms-vl.spec 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. Name: xcb-util-keysyms
  2. Version: 0.4.0
  3. Release: 1%{?_dist_release}
  4. Summary: XCB util-keysyms module
  5. Group: System Environment/Libraries
  6. License: MIT
  7. URL: http://xcb.freedesktop.org
  8. Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  10. BuildRequires: xcb-util-devel
  11. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. Packager: Takemikaduchi
  14. %description
  15. XCB util-keysyms module provides the following library:
  16. - keysyms: Standard X key constants and conversion to/from keycodes.
  17. %package devel
  18. Summary: Development and header files for %{name}
  19. Summary(ja): %{name} の開発用ファイル
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. Requires: pkgconfig
  23. %description devel
  24. Development files for %{name}.
  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. %post -p /sbin/ldconfig
  37. %postun -p /sbin/ldconfig
  38. %clean
  39. rm -rf %{buildroot}
  40. %files
  41. %defattr(-,root,root,-)
  42. %doc NEWS README
  43. %{_libdir}/libxcb-keysyms.so.*
  44. %files devel
  45. %defattr(-,root,root,-)
  46. %{_libdir}/pkgconfig/xcb-keysyms.pc
  47. %{_libdir}/libxcb-keysyms.so
  48. %{_includedir}/xcb/xcb_keysyms.h
  49. %changelog
  50. * Fri Oct 31 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.4.0-1
  51. - new upstream release
  52. - moved devel package to Development/Libraries Group
  53. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  54. - rebuild with VineSeed environment
  55. * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-1
  56. - initial build