isomd5sum-vl.spec 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
  2. Summary: Utilities for working with md5sum implanted in ISO images
  3. Summary(ja): ISO イメージに埋め込まれた md5sum を処理するためのユーティリティ
  4. Name: isomd5sum
  5. Version: 1.0.5
  6. Release: 1%{?_dist_release}
  7. License: GPLv2+
  8. Group: Applications/System
  9. URL: http://git.fedorahosted.org/git/?p=isomd5sum.git;a=summary
  10. Source0: http://fedorahosted.org/releases/i/s/isomd5sum/%{name}-%{version}.tar.bz2
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildRequires: python-devel
  13. BuildRequires: popt-devel
  14. %description
  15. The isomd5sum package contains utilities for implanting and verifying
  16. an md5sum implanted into an ISO9660 image.
  17. %package devel
  18. Summary: Development headers and library for using isomd5sum
  19. Summary(ja): Development headers and library for using isomd5sum
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. This contains header files and a library for working with the isomd5sum
  24. implanting and checking.
  25. %prep
  26. %setup -q
  27. %build
  28. make
  29. %install
  30. rm -rf $RPM_BUILD_ROOT
  31. make DESTDIR=$RPM_BUILD_ROOT install
  32. %clean
  33. rm -rf $RPM_BUILD_ROOT
  34. %files
  35. %defattr(-,root,root,-)
  36. %doc COPYING
  37. /usr/bin/implantisomd5
  38. /usr/bin/checkisomd5
  39. %{_mandir}/man*/*
  40. %{python_sitearch}/pyisomd5sum.so
  41. %files devel
  42. %defattr(-,root,root,-)
  43. %{_includedir}/*.h
  44. %{_libdir}/*.a
  45. %changelog
  46. * Fri Apr 09 2010 Shu KONNO <owa@bg.wakwak.com> 1.0.5-1
  47. - updated isomd5sum to 1.0.5
  48. * Wed Apr 22 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.4-2
  49. - changed devel Group to Development/Libraries
  50. * Tue Aug 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
  51. - initial build for Vine Linux
  52. * Thu Feb 7 2008 Jeremy Katz <katzj@redhat.com> - 1:1.0.4-1
  53. - Add man pages from Ryan Finnie (ryan AT finnie DOT org)
  54. - Use popt in checkisomd5 (Ryan Finnie)
  55. - Fix verbose/gauge interactions (Ryan Finnie)
  56. - A few other little janitorial things (Ryan Finnie)
  57. * Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.2-1
  58. - The "fix the build after changing the API" release
  59. * Mon Dec 10 2007 Jeremy Katz <katzj@redhat.com> - 1:1.0.1-1
  60. - Add some simple callback support in the library
  61. * Fri Dec 7 2007 Jeremy Katz <katzj@redhat.com> - 1.0-1
  62. - Initial build.