xcb-util-wm-vl.spec 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. Name: xcb-util-wm
  2. Version: 0.3.9
  3. Release: 2%{?_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. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. Packager: Takemikaduchi
  14. %description
  15. XCB util-image module provides the following library:
  16. - ewmh: Both client and window-manager helpers for EWMH.
  17. - icccm: Both client and window-manager helpers for ICCCM.
  18. %package devel
  19. Summary: Development and header files for %{name}
  20. Group: System Environment/Libraries
  21. Requires: %{name} = %{version}-%{release}, pkgconfig
  22. %description devel
  23. Development files for %{name}.
  24. %prep
  25. %setup -q
  26. %build
  27. %configure --with-pic --disable-static
  28. make %{?_smp_mflags}
  29. %check
  30. make check
  31. %install
  32. rm -rf %{buildroot}
  33. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
  34. rm %{buildroot}%{_libdir}/*.la
  35. %post -p /sbin/ldconfig
  36. %postun -p /sbin/ldconfig
  37. %clean
  38. rm -rf %{buildroot}
  39. %files
  40. %defattr(-,root,root,-)
  41. %doc README
  42. %{_libdir}/libxcb-ewmh.so.*
  43. %{_libdir}/libxcb-icccm.so.*
  44. %files devel
  45. %defattr(-,root,root,-)
  46. %{_libdir}/pkgconfig/xcb-ewmh.pc
  47. %{_libdir}/pkgconfig/xcb-icccm.pc
  48. %{_libdir}/libxcb-ewmh.so
  49. %{_libdir}/libxcb-icccm.so
  50. %{_includedir}/xcb/xcb_ewmh.h
  51. %{_includedir}/xcb/xcb_icccm.h
  52. %changelog
  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