libxshmfence-vl.spec 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Name: libxshmfence
  2. Version: 1.1
  3. Release: 1%{?_dist_release}
  4. Summary: X11 shared memory fences
  5. License: MIT
  6. URL: http://www.x.org/
  7. Source0: http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
  8. # upstream tarball has broken libtool because libtool is never not broken
  9. BuildRequires: autoconf
  10. BuildRequires: automake
  11. BuildRequires: libtool
  12. BuildRequires: xorg-x11-util-macros
  13. BuildRequires: xorg-x11-proto-devel
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: Takemikaduchi
  17. %description
  18. Shared memory fences for X11, as used in DRI3.
  19. %package devel
  20. Summary: Development files for %{name}
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. The %{name}-devel package contains libraries and header files for
  24. developing applications that use %{name}.
  25. %prep
  26. %setup -q
  27. %build
  28. autoreconf -v -i -f
  29. %configure --disable-static
  30. make %{?_smp_mflags}
  31. %install
  32. make install DESTDIR=$RPM_BUILD_ROOT
  33. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  34. %post -p /sbin/ldconfig
  35. %postun -p /sbin/ldconfig
  36. %files
  37. %doc COPYING ChangeLog README
  38. %defattr(-,root,root,-)
  39. %{_libdir}/libxshmfence.so.1*
  40. %files devel
  41. %defattr(-,root,root,-)
  42. %{_includedir}/*
  43. %{_libdir}/pkgconfig/xshmfence.pc
  44. %{_libdir}/*.so
  45. %changelog
  46. * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1-1
  47. - initial build for Vine Linux
  48. * Thu Dec 12 2013 Adam Jackson <ajax@redhat.com> 1.1-1
  49. - xshmfence 1.1
  50. * Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> 1.0-1
  51. - Initial packaging