libffi-vl.spec 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. %define name libffi
  2. %define version 3.0.9
  3. %define release 2%{?_dist_release}
  4. Summary: Foreign function interface library
  5. Summary(ja): Foreign function interface ライブラリ
  6. Name: %{name}
  7. Version: %{version}
  8. Release: %{release}
  9. Source0: %{name}-%{version}.tar.gz
  10. License: Distributable
  11. Group: System Environment/Libraries
  12. URL: http://sourceware.org/libffi/
  13. BuildRequires: gcc
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. %description
  16. A foreign function interface is the popular name for the interface
  17. that allows code written in one language to call code written in
  18. another language.
  19. %description -l ja
  20. Foreign function interface は一般に普及しているインターフェイスで、
  21. ある言語で書かれたコードから、他の言語で書かれたコードを呼び出すこ
  22. とを可能にします。
  23. #-----------------------------------------------------------------------------
  24. %package devel
  25. Summary: Libraries and headers for %{name}
  26. Summary(ja): %{name} 用の開発ライブラリおよびヘッダファイル
  27. Group: Development/Libraries
  28. Requires: %{name} = %{version}
  29. %description devel
  30. This package includes the files needed for developing and compiling
  31. applications which use the ffi library.
  32. You should install the libffi-devel package if you would like to
  33. develop applications using libffi.
  34. %description devel -l ja
  35. このパッケージは ffi ライブラリを使用するアプリケーションを開発
  36. するのに必要なライブラリやヘッダファイルを含んでいます。
  37. libffi を使用したアプリケーションを開発するなら、このパッケージ
  38. をインストールしてください。
  39. #-----------------------------------------------------------------------------
  40. %prep
  41. %setup -q
  42. %build
  43. %configure
  44. %{__make}
  45. %install
  46. %{__rm} -rf ${RPM_BUILD_ROOT}
  47. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  48. # move include files.
  49. %{__mv} ${RPM_BUILD_ROOT}/%{_libdir}/libffi-%{version}/include ${RPM_BUILD_ROOT}/%{_includedir}
  50. # remove unnecessary files.
  51. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_libdir}/libffi.la
  52. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_infodir}/dir
  53. %clean
  54. %{__rm} -rf ${RPM_BUILD_ROOT}
  55. %post -p /sbin/ldconfig
  56. %postun -p /sbin/ldconfig
  57. %files
  58. %defattr(-,root,root)
  59. %doc ChangeLog* LICENSE README
  60. %{_libdir}/libffi.so.*
  61. %{_infodir}/libffi.info*
  62. %{_mandir}/man3/ffi.3*
  63. %{_mandir}/man3/ffi_call.3*
  64. %{_mandir}/man3/ffi_prep_cif.3*
  65. %files devel
  66. %defattr(-,root,root)
  67. %{_libdir}/pkgconfig/*
  68. %{_libdir}/libffi.a
  69. %{_libdir}/libffi.so
  70. %{_includedir}/*.h
  71. %changelog
  72. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 3.0.9-2
  73. - build with rpm-4.8.1-1 for pkg-config file
  74. * Tue Feb 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.0.9-1
  75. - new upstream release
  76. - built with new toolchain
  77. * Wed Jan 21 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.8-1
  78. - new upstream release
  79. - spec in UTF-8
  80. * Thu Apr 17 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.5-1
  81. - updated to new upstream release
  82. * Wed Apr 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-1
  83. - apply new versioning policy
  84. * Sun Mar 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-0vl1
  85. - initial build for Vine Linux