xcb-util-wm-vl.spec 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. Name: xcb-util-wm
  2. Version: 0.4.1
  3. Release: 1%{?_dist_release}
  4. Summary: XCB util-wm 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. BuildRequires: xorg-x11-util-macros
  12. Vendor: Project Vine
  13. Distribution: Vine Linux
  14. Packager: Takemikaduchi
  15. %description
  16. XCB util-image module provides the following library:
  17. - ewmh: Both client and window-manager helpers for EWMH.
  18. - icccm: Both client and window-manager helpers for ICCCM.
  19. %package devel
  20. Summary: Development and header files for %{name}
  21. Group: System Environment/Libraries
  22. Requires: %{name} = %{version}-%{release}, 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 README
  43. %{_libdir}/libxcb-ewmh.so.*
  44. %{_libdir}/libxcb-icccm.so.*
  45. %files devel
  46. %defattr(-,root,root,-)
  47. %{_libdir}/pkgconfig/xcb-ewmh.pc
  48. %{_libdir}/pkgconfig/xcb-icccm.pc
  49. %{_libdir}/libxcb-ewmh.so
  50. %{_libdir}/libxcb-icccm.so
  51. %{_includedir}/xcb/xcb_ewmh.h
  52. %{_includedir}/xcb/xcb_icccm.h
  53. %changelog
  54. * Wed Apr 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.1-1
  55. - new upstream release
  56. - add BuildRequires: xorg-x11-util-macros
  57. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  58. - rebuild with VineSeed environment
  59. * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-1
  60. - initial build