libffi-vl.spec 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. %define name libffi
  2. %define version 3.0.9
  3. %define release 3%{?_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: ftp://sourceware.org/pub/libffi/%{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. sed -i -e "s|^includedir=.*include$|includedir=%{_includedir}|" \
  51. ${RPM_BUILD_ROOT}/%{_libdir}/pkgconfig/libffi.pc
  52. # remove unnecessary files.
  53. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_libdir}/libffi.la
  54. %{__rm} -rf ${RPM_BUILD_ROOT}/%{_infodir}/dir
  55. %clean
  56. %{__rm} -rf ${RPM_BUILD_ROOT}
  57. %post -p /sbin/ldconfig
  58. %postun -p /sbin/ldconfig
  59. %files
  60. %defattr(-,root,root)
  61. %doc ChangeLog* LICENSE README
  62. %{_libdir}/libffi.so.*
  63. %{_infodir}/libffi.info*
  64. %{_mandir}/man3/ffi.3*
  65. %{_mandir}/man3/ffi_call.3*
  66. %{_mandir}/man3/ffi_prep_cif.3*
  67. %files devel
  68. %defattr(-,root,root)
  69. %{_libdir}/pkgconfig/*
  70. %{_libdir}/libffi.a
  71. %{_libdir}/libffi.so
  72. %{_includedir}/*.h
  73. %changelog
  74. * Fri Nov 26 2010 Shu KONNO <owa@bg.wakwak.com> 3.0.9-3
  75. - fixed includedir in libffi.pc
  76. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 3.0.9-2
  77. - build with rpm-4.8.1-1 for pkg-config file
  78. * Tue Feb 23 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 3.0.9-1
  79. - new upstream release
  80. - built with new toolchain
  81. * Wed Jan 21 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.8-1
  82. - new upstream release
  83. - spec in UTF-8
  84. * Thu Apr 17 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 3.0.5-1
  85. - updated to new upstream release
  86. * Wed Apr 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-1
  87. - apply new versioning policy
  88. * Sun Mar 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 3.0.4-0vl1
  89. - initial build for Vine Linux