libffi-vl.spec 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. Summary: Foreign function interface library
  3. Summary(ja): Foreign function interface ライブラリ
  4. Name: libffi
  5. Version: 3.3
  6. Release: 1%{?_dist_release}
  7. Group: System Environment/Libraries
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. License: Distributable
  11. URL: http://sourceware.org/libffi/
  12. Source0: https://github.com/libffi/libffi/releases/download/v%{version}/%{name}-%{version}.tar.gz
  13. BuildRequires: gcc
  14. BuildRequires: texinfo
  15. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  16. %description
  17. A foreign function interface is the popular name for the interface
  18. that allows code written in one language to call code written in
  19. another language.
  20. %description -l ja
  21. Foreign function interface は一般に普及しているインターフェイスで、
  22. ある言語で書かれたコードから、他の言語で書かれたコードを呼び出すこ
  23. とを可能にします。
  24. #-----------------------------------------------------------------------------
  25. %package devel
  26. Summary: Libraries and headers for %{name}
  27. Summary(ja): %{name} 用の開発ライブラリおよびヘッダファイル
  28. Group: Development/Libraries
  29. Requires: %{name} = %{version}
  30. Requires: pkgconfig
  31. %description devel
  32. This package includes the files needed for developing and compiling
  33. applications which use the ffi library.
  34. You should install the libffi-devel package if you would like to
  35. develop applications using libffi.
  36. %description devel -l ja
  37. このパッケージは ffi ライブラリを使用するアプリケーションを開発
  38. するのに必要なライブラリやヘッダファイルを含んでいます。
  39. libffi を使用したアプリケーションを開発するなら、このパッケージ
  40. をインストールしてください。
  41. #compat32
  42. %package -n compat32-%{name}
  43. Summary: Foreign function interface library
  44. Summary(ja): Foreign function interface ライブラリ
  45. Group: System Environment/Libraries
  46. Requires: %{name} = %{version}
  47. %description -n compat32-%{name}
  48. A foreign function interface is the popular name for the interface
  49. that allows code written in one language to call code written in
  50. another language.
  51. %description -n compat32-%{name} -l ja
  52. Foreign function interface は一般に普及しているインターフェイスで、
  53. ある言語で書かれたコードから、他の言語で書かれたコードを呼び出すこ
  54. とを可能にします。
  55. %package -n compat32-%{name}-devel
  56. Summary: Libraries and headers for %{name}
  57. Summary(ja): %{name} 用の開発ライブラリおよびヘッダファイル
  58. Group: Development/Libraries
  59. Requires: compat32-%{name} = %{version}
  60. Requires: %{name}-devel = %{version}
  61. %description -n compat32-%{name}-devel
  62. This package includes the files needed for developing and compiling
  63. applications which use the ffi library.
  64. You should install the libffi-devel package if you would like to
  65. develop applications using libffi.
  66. %description -n compat32-%{name}-devel -l ja
  67. このパッケージは ffi ライブラリを使用するアプリケーションを開発
  68. するのに必要なライブラリやヘッダファイルを含んでいます。
  69. libffi を使用したアプリケーションを開発するなら、このパッケージ
  70. をインストールしてください。
  71. #-----------------------------------------------------------------------------
  72. %prep
  73. %setup -q
  74. sed -i -e 's/{toolexeclibdir}/{libdir}/' libffi.pc.in
  75. %build
  76. autoreconf -ifv
  77. %configure
  78. %{__make}
  79. %install
  80. %{__rm} -rf ${RPM_BUILD_ROOT}
  81. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  82. # remove unnecessary files.
  83. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_libdir}/libffi.la
  84. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_infodir}/dir
  85. %clean
  86. %{__rm} -rf ${RPM_BUILD_ROOT}
  87. %post -p /sbin/ldconfig
  88. %postun -p /sbin/ldconfig
  89. %files
  90. %defattr(-,root,root)
  91. %license LICENSE
  92. %doc ChangeLog* README
  93. %{_libdir}/libffi.so.*
  94. %{_infodir}/libffi.info*
  95. %{_mandir}/man3/ffi.3*
  96. %{_mandir}/man3/ffi_call.3*
  97. %{_mandir}/man3/ffi_prep_cif.3*
  98. %{_mandir}/man3/ffi_prep_cif_var.3*
  99. %files devel
  100. %defattr(-,root,root)
  101. %{_libdir}/pkgconfig/*
  102. %{_libdir}/libffi.a
  103. %{_libdir}/libffi.so
  104. %{_includedir}/*.h
  105. # compat32
  106. %if %{build_compat32}
  107. %files -n compat32-%{name}
  108. %defattr(-,root,root)
  109. %{_libdir}/libffi.so.*
  110. %files -n compat32-%{name}-devel
  111. %defattr(-,root,root)
  112. %{_libdir}/libffi.so
  113. %endif
  114. %changelog
  115. * Wed Apr 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3-1
  116. - updated to 3.3.
  117. - dropped Patch0.
  118. * Tue Jan 02 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.2.1-1
  119. - updated to 3.2.1.
  120. - imported Patch0 from rawhide.
  121. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.13-1
  122. - update to 3.0.13
  123. * Wed Aug 17 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.9-4
  124. - create compat32 sub packages
  125. * Fri Nov 26 2010 Shu KONNO <owa@bg.wakwak.com> 3.0.9-3
  126. - fixed includedir in libffi.pc
  127. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 3.0.9-2
  128. - build with rpm-4.8.1-1 for pkg-config file
  129. * Tue Feb 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.0.9-1
  130. - new upstream release
  131. - built with new toolchain
  132. * Wed Jan 21 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.8-1
  133. - new upstream release
  134. - spec in UTF-8
  135. * Thu Apr 17 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.5-1
  136. - updated to new upstream release
  137. * Wed Apr 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-1
  138. - apply new versioning policy
  139. * Sun Mar 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-0vl1
  140. - initial build for Vine Linux