libsvg-vl.spec 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Summary: Library for SVG Files
  2. Summary(ja): SVG ファイルを扱うライブラリ
  3. Name: libsvg
  4. Version: 0.1.4
  5. Release: 2%{?_dist_release}
  6. License: LGPL
  7. Group: System Environment/Libraries
  8. URL: http://www.cairographics.org/
  9. Source: %{name}-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: libjpeg-devel, libpng-devel, libxml2-devel, pkgconfig
  12. %description
  13. libsvg provides a parser for SVG content in files or buffers.
  14. %package devel
  15. Summary: Library for SVG Files
  16. Group: Development/Libraries
  17. Requires: %{name} = %{version}
  18. Requires: libxml2-devel
  19. %description devel
  20. libsvg provides a parser for SVG content in files or buffers.
  21. %prep
  22. %setup -q
  23. %build
  24. %configure
  25. %__make
  26. %install
  27. rm -rf $RPM_BUILD_ROOT
  28. %makeinstall
  29. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  30. %clean
  31. rm -rf $RPM_BUILD_ROOT
  32. %post -p /sbin/ldconfig
  33. %postun -p /sbin/ldconfig
  34. %files
  35. %defattr(-,root,root)
  36. %doc AUTHORS ChangeLog COPYING NEWS README TODO
  37. %{_libdir}/*.so.*
  38. %files devel
  39. %defattr(-,root,root)
  40. %{_libdir}/pkgconfig/%{name}.pc
  41. %{_libdir}/*.a
  42. %{_libdir}/*.so
  43. %{_includedir}/svg.h
  44. %changelog
  45. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.4-2
  46. - rebuild with rpm-4.8.1 for pkg-config file
  47. * Mon Sep 29 2008 Shu KONNO <owa@bg.wakwak.com> 0.1.4-1vl5
  48. - applied new versioning policy, spec in utf-8
  49. * Fri Feb 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.1.4-0vl1
  50. - initial build for Vine Linux partially based on opensuse package
  51. * Wed Jan 25 2006 - mls@suse.de
  52. - converted neededforbuild to BuildRequires
  53. * Wed Nov 02 2005 - sbrabec@suse.cz
  54. - New SuSE package, version 0.1.4 (#120043).