xcb-util-cursor-vl.spec 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Name: xcb-util-cursor
  2. Version: 0.1.1
  3. Release: 2%{?_dist_release}
  4. Summary: XCB util-cursor 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: xcb-util-image-devel
  12. BuildRequires: xcb-util-renderutil-devel
  13. Vendor: Project Vine
  14. Distribution: Vine Linux
  15. Packager: Takemikaduchi
  16. %description
  17. XCB util-cursor module provides the following library:
  18. - cursor: Port of libxcursor
  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 README
  45. %{_libdir}/libxcb-cursor.so.*
  46. %files devel
  47. %defattr(-,root,root,-)
  48. %{_libdir}/pkgconfig/xcb-cursor.pc
  49. %{_libdir}/libxcb-cursor.so
  50. %{_includedir}/xcb/*.h
  51. %changelog
  52. * Fri Oct 31 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.1.1-2
  53. - moved devel package to Development/Libraries Group
  54. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.1-1
  55. - initial build