libcacard-vl.spec 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Name: libcacard
  2. Version: 0.1.2
  3. Release: 1%{?_dist_release}
  4. Summary: Common Access Card (CAC) Emulation
  5. Group: System Environment/Libraries
  6. License: LGPLv2+
  7. URL: http://www.spice-space.org/download
  8. Source0: http://www.spice-space.org/download/libcacard/libcacard-%{version}.tar.bz2
  9. BuildRequires: nss-devel >= 3.12.8-2
  10. %description
  11. Common Access Card (CAC) emulation library.
  12. %package tools
  13. Summary: CAC Emulation tools
  14. Group: Development/Libraries
  15. Requires: %{name} = %{version}-%{release}
  16. %description tools
  17. CAC emulation tools.
  18. %package devel
  19. Summary: CAC Emulation devel
  20. Group: Development/Libraries
  21. Requires: %{name} = %{version}-%{release}
  22. %description devel
  23. CAC emulation development files.
  24. %prep
  25. %setup -q
  26. %build
  27. %configure
  28. make %{?_smp_mflags}
  29. %install
  30. rm -rf $RPM_BUILD_ROOT
  31. make install DESTDIR=$RPM_BUILD_ROOT
  32. find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f
  33. %post -p /sbin/ldconfig
  34. %postun -p /sbin/ldconfig
  35. %files
  36. %defattr(-,root,root,-)
  37. %doc COPYING README
  38. %{_libdir}/libcacard.so.*
  39. %files devel
  40. %defattr(-,root,root,-)
  41. %{_includedir}/cacard
  42. %{_libdir}/pkgconfig/libcacard.pc
  43. %{_libdir}/libcacard.so
  44. %files tools
  45. %defattr(-,root,root,-)
  46. %{_bindir}/vscclient
  47. %changelog
  48. * Sun Nov 11 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.1.2-1
  49. - initial build for Vine Linux
  50. * Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-3
  51. - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
  52. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-2
  53. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  54. * Tue Feb 09 2011 Alon Levy <alevy@redhat.com> - 0.1.2-1
  55. - upstream update
  56. - upstream updated to 0.1.2 (no rpm was done for this version)
  57. * Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-5
  58. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  59. * Sun Dec 12 2010 Alon Levy <alevy@redhat.com> - 0.1.0-4
  60. - address review issues:
  61. - Group for main and devel and tools
  62. - Requires for devel and tools
  63. - fix changelog for previous entry (day was wrong, and macro quoting)
  64. * Sat Dec 11 2010 Alon Levy <alevy@redhat.com> - 0.1.0-3
  65. - address review issues: defattr typo, %%doc at %%files, remove .*a from install
  66. * Thu Dec 9 2010 Alon Levy <alevy@redhat.com> - 0.1.0-2
  67. - address prereview issues.
  68. * Thu Dec 9 2010 Alon Levy <alevy@redhat.com> - 0.1.0-1
  69. - initial package.