1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- Summary: A library for rendering PostScript(TM) documents
- Summary(ja): PostScript(TM) 文書をレンダリングするためのライブラリ
- Name: libspectre
- Version: 0.2.7
- Release: 2%{?_dist_release}
- Group: System Environment/Libraries
- License: GPLv2+
- URL: http://libspectre.freedesktop.org
- Source0: http://libspectre.freedesktop.org/releases/%{name}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: ghostscript-devel >= 8.63
- %description
- %{name} is a small library for rendering PostScript(TM) documents.
- It provides a convenient easy to use API for handling and rendering
- PostScript documents.
- %package devel
- Summary: Development files for %{name}
- Summary(ja): Development files for %{name}
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- Requires: pkgconfig
- %description devel
- The %{name}-devel package contains libraries and header files for
- developing applications that use %{name}.
- %prep
- %setup -q
- %build
- autoreconf -i -f
- %configure --disable-static
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post -p /sbin/ldconfig
- %postun -p /sbin/ldconfig
- %files
- %defattr(-,root,root,-)
- %doc COPYING AUTHORS NEWS README TODO
- %{_libdir}/*.so.*
- %files devel
- %defattr(-,root,root,-)
- %{_includedir}/*
- %{_libdir}/*.so
- %{_libdir}/pkgconfig/libspectre.pc
- %changelog
- * Wed Dec 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.2.7-2
- - rebuilt with ghostscript-9.15.
- * Sun Aug 24 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.7-1
- - update to 0.2.7
- * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.2.1-2
- - rebuild with rpm-4.8.1 for pkg-config file
- * Tue Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.2.1-1
- - initial build for Vine Linux
- * Sun Aug 10 2008 Matthias Clasen <mclasen@redhat.com> - 0.2.1-1
- - Update to 0.2.1
- * Sat Feb 9 2008 Matthias Clasen <mclasen@redhat.com> - 0.2.0-2
- - Rebuild for gcc 4.3
- * Tue Jan 29 2008 Matthias Clasen <mclasen@redhat.com> - 0.2.0-1
- - Initial packaging
|