jansson-vl.spec 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. Name: jansson
  2. Version: 2.1
  3. Release: 1%{?_dist_release}
  4. Summary: C library for encoding, decoding and manipulating JSON data
  5. Summary(ja): JSONデータをエンコード・デコード・操作するためのライブラリ
  6. Group: System Environment/Libraries
  7. License: MIT
  8. URL: http://www.digip.org/jansson/
  9. Source0: http://www.digip.org/jansson/releases/jansson-%{version}.tar.bz2
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  11. BuildRequires: python-sphinx
  12. %description
  13. Small library for parsing and writing JSON documents.
  14. %package devel
  15. Summary: Header files for jansson
  16. Summary(ja): Header files for jansson
  17. Group: Development/Libraries
  18. Requires: %{name} = %{version}-%{release}
  19. Requires: pkgconfig
  20. %description devel
  21. Header files for developing applications making use of jansson.
  22. %prep
  23. %setup -q
  24. %build
  25. %configure --disable-static
  26. make %{?_smp_mflags}
  27. make html
  28. %check
  29. make check
  30. %install
  31. rm -rf "$RPM_BUILD_ROOT"
  32. make install INSTALL="install -p" DESTDIR="$RPM_BUILD_ROOT"
  33. rm "$RPM_BUILD_ROOT%{_libdir}"/*.la
  34. %clean
  35. rm -rf "$RPM_BUILD_ROOT"
  36. %post -p /sbin/ldconfig
  37. %postun -p /sbin/ldconfig
  38. %files
  39. %defattr(-,root,root,-)
  40. %doc LICENSE CHANGES
  41. %{_libdir}/*.so.*
  42. %files devel
  43. %defattr(-,root,root,-)
  44. %doc doc/_build/html/*
  45. %{_libdir}/*.so
  46. %{_libdir}/pkgconfig/%{name}.pc
  47. %{_includedir}/*
  48. %changelog
  49. * Tue Jun 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1-1
  50. - initial build for Vine Linux
  51. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-2
  52. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  53. * Thu Jun 11 2011 Sean Middleditch <sean@middleditch.us> 2.1-1
  54. - Update to Jansson 2.1.
  55. - Drop Sphinx patch, no longer necessary.
  56. * Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
  57. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  58. * Thu Jul 03 2010 Sean Middleditch <sean@middleditch.us> 1.3-1
  59. - Update to Jansson 1.3.
  60. - Disable warnings-as-errors for Sphinx documentation.
  61. * Thu Jan 21 2010 Sean Middleditch <sean@middleditch.us> 1.2-1
  62. - Update to Jansson 1.2.
  63. * Thu Jan 11 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-4
  64. - Update jansson description per upstream's suggestions.
  65. - Removed README from docs.
  66. * Thu Jan 09 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-3
  67. - Correct misspelling of jansson in the pkg-config file.
  68. * Thu Jan 09 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-2
  69. - Fix Changelog dates.
  70. - Mix autoheader warning.
  71. - Added make check.
  72. - Build and install HTML documentation in -devel package.
  73. * Thu Jan 07 2010 Sean Middleditch <sean@middleditch.us> 1.1.3-1
  74. - Initial packaging for Fedora.