xcb-util-image-vl.spec 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. Name: xcb-util-image
  2. Version: 0.3.9
  3. Release: 2%{?_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. Group: System Environment/Libraries
  20. Requires: %{name} = %{version}-%{release}, pkgconfig
  21. %description devel
  22. Development files for %{name}.
  23. %prep
  24. %setup -q
  25. %build
  26. %configure --with-pic --disable-static
  27. make %{?_smp_mflags}
  28. %check
  29. make check
  30. %install
  31. rm -rf %{buildroot}
  32. make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
  33. rm %{buildroot}%{_libdir}/*.la
  34. %post -p /sbin/ldconfig
  35. %postun -p /sbin/ldconfig
  36. %clean
  37. rm -rf %{buildroot}
  38. %files
  39. %defattr(-,root,root,-)
  40. %doc README
  41. %{_libdir}/libxcb-image.so.*
  42. %files devel
  43. %defattr(-,root,root,-)
  44. %{_libdir}/pkgconfig/xcb-image.pc
  45. %{_libdir}/libxcb-image.so
  46. %{_includedir}/xcb/*.h
  47. %changelog
  48. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-2
  49. - rebuild with VineSeed environment
  50. * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.9-1
  51. - initial build