xcb-util-wm-vl.spec 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. Name: xcb-util-wm
  2. Version: 0.4.1
  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. 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. Summary(ja): %{name} の開発用ファイル
  22. Group: Development/Libraries
  23. Requires: %{name} = %{version}-%{release}
  24. Requires: pkgconfig
  25. %description devel
  26. Development files for %{name}.
  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. %post -p /sbin/ldconfig
  39. %postun -p /sbin/ldconfig
  40. %clean
  41. rm -rf %{buildroot}
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc COPYING NEWS README
  45. %{_libdir}/libxcb-ewmh.so.*
  46. %{_libdir}/libxcb-icccm.so.*
  47. %files devel
  48. %defattr(-,root,root,-)
  49. %{_libdir}/pkgconfig/xcb-ewmh.pc
  50. %{_libdir}/pkgconfig/xcb-icccm.pc
  51. %{_libdir}/libxcb-ewmh.so
  52. %{_libdir}/libxcb-icccm.so
  53. %{_includedir}/xcb/xcb_ewmh.h
  54. %{_includedir}/xcb/xcb_icccm.h
  55. %changelog
  56. * Sat Nov 1 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.4.1-2
  57. - moved devel package to Development/Libraries Group
  58. * Wed Apr 23 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.4.1-1
  59. - new upstream release
  60. - add BuildRequires: xorg-x11-util-macros
  61. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  62. - rebuild with VineSeed environment
  63. * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-1
  64. - initial build