xcb-util-image-vl.spec 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Name: xcb-util-image
  2. Version: 0.4.0
  3. Release: 1%{?_dist_release}
  4. Summary: XCB util-image 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. - image: Port of Xlib's XImage and XShmImage functions.
  17. %package devel
  18. Summary: Development and header files for %{name}
  19. Summary(ja): %{name} の開発用ファイル
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. Requires: 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 COPYING NEWS README
  43. %{_libdir}/libxcb-image.so.*
  44. %files devel
  45. %defattr(-,root,root,-)
  46. %{_libdir}/pkgconfig/xcb-image.pc
  47. %{_libdir}/libxcb-image.so
  48. %{_includedir}/xcb/*.h
  49. %changelog
  50. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  51. - new upstream release
  52. - moved devel package to Development/Libraries Group
  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