123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- Name: libxshmfence
- Version: 1.1
- Release: 1%{?_dist_release}
- Summary: X11 shared memory fences
- License: MIT
- URL: http://www.x.org/
- Source0: http://ftp.x.org/pub/individual/lib/%{name}-%{version}.tar.bz2
- # upstream tarball has broken libtool because libtool is never not broken
- BuildRequires: autoconf
- BuildRequires: automake
- BuildRequires: libtool
- BuildRequires: xorg-x11-util-macros
- BuildRequires: xorg-x11-proto-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- Shared memory fences for X11, as used in DRI3.
- %package devel
- Summary: Development files for %{name}
- Requires: %{name} = %{version}-%{release}
- %description devel
- The %{name}-devel package contains libraries and header files for
- developing applications that use %{name}.
- %prep
- %setup -q
- %build
- autoreconf -v -i -f
- %configure --disable-static
- make %{?_smp_mflags}
- %install
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %doc COPYING ChangeLog README
- %defattr(-,root,root,-)
- %{_libdir}/libxshmfence.so.1*
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/*
- %{_libdir}/pkgconfig/xshmfence.pc
- %{_libdir}/*.so
- %changelog
- * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1-1
- - initial build for Vine Linux
- * Thu Dec 12 2013 Adam Jackson <ajax@redhat.com> 1.1-1
- - xshmfence 1.1
- * Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> 1.0-1
- - Initial packaging
|