74 lines
1.8 KiB
RPMSpec
74 lines
1.8 KiB
RPMSpec
%define gitdate 20070824
|
|
|
|
Name: pixman
|
|
Version: 0.9.0
|
|
Release: 4.%{gitdate}%{?dist}
|
|
Summary: Pixel manipulation library
|
|
|
|
Group: System Environment/Libraries
|
|
License: MIT
|
|
URL: http://gitweb.freedesktop.org/?p=pixman.git;a=summary
|
|
Source0: pixman-%{gitdate}.tar.bz2
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildRequires: automake autoconf libtool pkgconfig
|
|
|
|
%description
|
|
Pixman is a pixel manipulation library for X and cairo.
|
|
|
|
%package devel
|
|
Summary: Pixel manipulation library development package
|
|
Group: Development/Libraries
|
|
Requires: %{name} = %{version}-%{release}
|
|
Requires: pkgconfig
|
|
|
|
%description devel
|
|
Development library for pixman.
|
|
|
|
%prep
|
|
%setup -q -n %{name}
|
|
|
|
%build
|
|
./autogen.sh
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libpixman-1.so.0
|
|
%{_libdir}/libpixman-1.so.0.9.5
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%dir %{_includedir}/pixman-1
|
|
%{_includedir}/pixman-1/pixman.h
|
|
%{_libdir}/libpixman-1.so
|
|
%{_libdir}/pkgconfig/pixman-1.pc
|
|
|
|
%changelog
|
|
* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> 0.9.0-4.20070824
|
|
- New snapshot
|
|
|
|
* Wed Jul 25 2007 Jeremy Katz <katzj@redhat.com> - 0.9.0-3.20070724
|
|
- rebuild for toolchain bug
|
|
|
|
* Tue Jul 24 2007 Adam Jackson <ajax@redhat.com> 0.9.0-2.20070724
|
|
- Re-add it, %%dir is not the same as adding a dir whole.
|
|
|
|
* Tue Jul 24 2007 Adam Jackson <ajax@redhat.com> 0.9.0-1.20070724
|
|
- Remove redundant header from %%files devel.
|
|
|
|
* Fri May 18 2007 Adam Jackson <ajax@redhat.com> 0.9.0-0.20070724
|
|
- git build so I can build git X.
|