1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- Name: xcb-util-renderutil
- Version: 0.3.9
- Release: 1%{?_dist_release}
- Summary: XCB util-renderutil module
- Group: System Environment/Libraries
- License: MIT
- URL: http://xcb.freedesktop.org
- Source0: http://xcb.freedesktop.org/dist/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: xcb-util-devel
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- XCB util-renderutil module provides the following library:
- - renderutil: Convenience functions for the Render extension.
- %package devel
- Summary: Development and header files for %{name}
- Summary: %{name} の開発用ファイル
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- Development files for %{name}.
- %prep
- %setup -q
- %build
- %configure --with-pic --disable-static
- make %{?_smp_mflags}
- %check
- make check
- %install
- rm -rf %{buildroot}
- make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
- rm %{buildroot}%{_libdir}/*.la
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc COPYING NEWS README
- %{_libdir}/libxcb-render-util.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_libdir}/pkgconfig/xcb-renderutil.pc
- %{_libdir}/libxcb-render-util.so
- %{_includedir}/xcb/xcb_renderutil.h
- %changelog
- * Fri Oct 31 2014 Ryoichi INAAGKI <ryo1@toki.waseda.jp> 0.3.9-1
- - new upstream release
- - moved devel package to Development/Libraries Group
- * Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.8-2
- - rebuild with VineSeed environment
- * Sun Jun 16 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.3.8-1
- - initial build
|