orange-vl.spec 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. Name: orange
  2. Version: 0.4
  3. Release: 3%{?_dist_release}
  4. Summary: Extrace CAB files from self-extracting installers
  5. Group: Applications/Accessories
  6. License: MIT
  7. URL: http://synce.sourceforge.net/
  8. Source0: http://downloads.sourceforge.net/synce/liborange-0.4.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  10. BuildRequires: libsynce-devel
  11. BuildRequires: dynamite-devel
  12. BuildRequires: unshield-devel >= 0.5.1
  13. BuildRequires: libgsf-devel
  14. BuildRequires: file
  15. BuildRequires: zlib-devel
  16. Provides: liborange = %{version}-%{release}
  17. %description
  18. Orange is a tool and library for squeezing out juicy installable Microsoft
  19. Cabinet Files from self-extracting installers for Microsoft Windows and some
  20. other installer file formats
  21. %package devel
  22. Summary: Files needed for software development with %{name}
  23. Summary(ja): %{name} の開発用ファイル
  24. Group: Development/Libraries
  25. Requires: %{name} = %{version}-%{release}
  26. Requires: libsynce-devel
  27. Requires: dynamite-devel
  28. Requires: unshield-devel
  29. Requires: pkgconfig
  30. Provides: liborange-devel = %{version}-%{release}
  31. %description devel
  32. The %{name}-devel package contains the files needed for development with
  33. %{name}
  34. %prep
  35. %setup -q -n liborange-%{version}
  36. %build
  37. %configure --disable-static --disable-rpath \
  38. --with-libsynce-include=%{_includedir} --with-libsynce-lib=%{_libdir} \
  39. --with-libdynamite-include=%{_includedir} --with-libdynamite-lib=%{_libdir} \
  40. --with-libunshield-include=%{_includedir} --with-libunshield-lib=%{_libdir} \
  41. --with-libgsf
  42. make %{?_smp_mflags}
  43. %install
  44. rm -rf $RPM_BUILD_ROOT
  45. make install DESTDIR=$RPM_BUILD_ROOT
  46. rm -f $RPM_BUILD_ROOT%{_libdir}/liborange.{,l}a
  47. %clean
  48. rm -rf $RPM_BUILD_ROOT
  49. %post -p /sbin/ldconfig
  50. %postun -p /sbin/ldconfig
  51. %files
  52. %defattr(-,root,root,-)
  53. %doc LICENSE
  54. %{_bindir}/orange
  55. %{_libdir}/liborange.so.*
  56. %{_mandir}/man1/orange.1.gz
  57. %files devel
  58. %{_libdir}/liborange.so
  59. %{_includedir}/liborange*h
  60. %{_libdir}/pkgconfig/liborange.pc
  61. %changelog
  62. * Tue Oct 28 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.4-3
  63. - moved to Applications/Accessories Group
  64. - added BR to devel subpackage
  65. * Sun Feb 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.4-2
  66. - rebuild with Vine6 environment
  67. * Wed Jun 09 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 0.4-1
  68. - initial build for Vine Linux
  69. * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-3
  70. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  71. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4-2
  72. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  73. * Sun Feb 08 2009 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  74. - 0.4-1
  75. - version upgrade
  76. * Tue Jun 17 2008 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  77. - 0.3.2-1
  78. - version upgrade
  79. * Mon Dec 03 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  80. - 0.3-5.cvs20051118
  81. - fix BR
  82. * Wed Aug 22 2007 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  83. - 0.3-5.cvs20051118
  84. - rebuild for buildid
  85. * Mon Dec 04 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  86. 0.3-4.cvs20051118
  87. - bump
  88. * Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 0.3-3.cvs20051118
  89. - rebuilt for unwind info generation, broken in gcc-4.1.1-21
  90. * Mon Sep 18 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  91. 0.3-2.cvs20051118
  92. - FE6 rebuild
  93. - Fix BR
  94. * Wed Mar 22 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  95. 0.3-1.cvs20051118
  96. - Bump for libgsf
  97. - fix versioning
  98. * Tue Feb 28 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  99. 0.3-0.cvs20051118.fc5.2
  100. - Rebuild for Fedora Extras 5
  101. * Thu Dec 15 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  102. 0.3-0.cvs20051118.fc5.1
  103. - rebuild
  104. * Fri Nov 18 2005 Christian Iseli <Christian.Iseli[AT]licr.org> 0.3-0
  105. - grab latest from CVS to use libgsf instead of obsolete libole2
  106. * Tue Sep 27 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  107. 0.3-2
  108. - include patch for new libole2
  109. * Tue Aug 23 2005 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
  110. 0.3-1
  111. - Initial Release