cabextract-vl.spec 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. Summary: A program to extract Microsoft Cabinet files
  2. Summary(ja): Microsoft キャビネットファイルを抽出するプログラム
  3. Name: cabextract
  4. Version: 1.5
  5. Release: 1%{?_dist_release}
  6. License: GPLv3
  7. Group: Applications/Archiving
  8. Source: http://www.cabextract.org.uk/%{name}-%{version}.tar.gz
  9. URL: http://www.cabextract.org.uk/
  10. #Vendor: Stuart Caie
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. Prefix: /usr
  13. #--------------------------------------------------------------------
  14. %description
  15. Cabinet (.CAB) files are a form of archive, which Microsoft use to
  16. distribute their software, and things like Windows Font Packs. The
  17. cabextract program unpacks these files.
  18. %description -l ja
  19. Microsoft 社の配布するソフトウェア、例えば Windows フォントパック等で
  20. 使用されているキャビネット (.CAB) 形式のアーカイブファイルがあります。
  21. cabextract プログラムはこれらのファイルの解凍を行います。
  22. #--------------------------------------------------------------------
  23. %prep
  24. %setup -q
  25. %build
  26. CFLAGS=${RPM_OPT_FLAGS} ./configure --prefix=%{prefix}
  27. make %{?_smp_mflags}
  28. %install
  29. rm -rf ${RPM_BUILD_ROOT}
  30. make install DESTDIR=$RPM_BUILD_ROOT
  31. %clean
  32. [ ${RPM_BUILD_ROOT} != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  33. #--------------------------------------------------------------------
  34. %files
  35. %defattr(0644, root, root, 0755)
  36. %doc AUTHORS ChangeLog NEWS README
  37. %attr(0755, root, root) %{_bindir}/cabextract
  38. %{_mandir}/man1/cabextract.1*
  39. #--------------------------------------------------------------------
  40. %changelog
  41. * Wed Feb 11 2015 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.5-1
  42. - new upstream release
  43. - changed URL, Source tag
  44. * Sun Jan 12 2014 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-2
  45. - rebuilt with current toolchain
  46. * Fri May 13 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4-1
  47. - new upstream release
  48. * Mon Aug 16 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-3
  49. - fixed permission (see [VineLinux:1021])
  50. * Wed Aug 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-2
  51. - recovered %build section
  52. - missing type make command...
  53. * Sun Aug 1 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.3-1
  54. - new upstream release
  55. - cleaned up spec
  56. - changed lisence to GPLv3
  57. * Fri Jul 17 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.2-2
  58. - spec in UTF-8
  59. * Mon Mar 24 2008 Seiichirou Babasaki 1.2
  60. - Import cabextract - Packager: Babasaki
  61. - Updated specfile