xcb-util-cursor-vl.spec 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Name: xcb-util-cursor
  2. Version: 0.1.1
  3. Release: 1%{?_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. 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-cursor.so.*
  44. %files devel
  45. %defattr(-,root,root,-)
  46. %{_libdir}/pkgconfig/xcb-cursor.pc
  47. %{_libdir}/libxcb-cursor.so
  48. %{_includedir}/xcb/*.h
  49. %changelog
  50. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.1-1
  51. - initial build