fribidi-vl.spec 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Name: fribidi
  2. Version: 0.10.9
  3. Release: 2%{?_dist_release}
  4. License: LGPL
  5. Source: hhttp://fribidi.org/download/%{name}-%{version}.tar.gz
  6. URL: http://freedesktop.org/Software/FriBidi
  7. Summary: Library implementing the Unicode Bidirectional Algorithm
  8. Group: System Environment/Libraries
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. %description
  11. A library to handle bidirectional scripts (eg. hebrew, arabic), so that
  12. the display is done in the proper way; while the text data itself is
  13. always written in logical order.
  14. %package devel
  15. Summary: Library implementing the Unicode Bidirectional Algorithm
  16. Group: Development/Libraries
  17. Requires: %{name} = %{version}-%{release}
  18. %description devel
  19. This package includes the static libraries and header files
  20. for the fribidi package.
  21. Install if you want to develop programs which will use fribidi.
  22. %prep
  23. %setup -q
  24. %build
  25. %configure
  26. make
  27. %install
  28. rm -rf $RPM_BUILD_ROOT
  29. make DESTDIR=$RPM_BUILD_ROOT install
  30. rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
  31. %clean
  32. rm -rf $RPM_BUILD_ROOT
  33. %post -p /sbin/ldconfig
  34. %postun -p /sbin/ldconfig
  35. %files
  36. %defattr(-, root, root)
  37. %doc README AUTHORS COPYING ChangeLog TODO THANKS NEWS
  38. %{_bindir}/%{name}
  39. %{_libdir}/*.so.*
  40. %files devel
  41. %defattr(-, root, root)
  42. %{_bindir}/%{name}-config
  43. %{_libdir}/*.a
  44. #{_libdir}/*.la
  45. %{_libdir}/*.so
  46. %{_includedir}/*
  47. %{_libdir}/pkgconfig/%{name}.pc
  48. %changelog
  49. * Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.10.9-2
  50. - rebuild with rpm-4.8.1 for pkg-config file
  51. * Mon Jun 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-1
  52. - applied new versioning policy
  53. * Sun Jan 13 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.9-0vl1
  54. - new upstream release
  55. * Sun Mar 19 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.7-0vl1
  56. - new upstream release
  57. * Tue Aug 10 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl2
  58. - update URL
  59. * Sat May 1 2004 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 0.10.4-0vl1
  60. - change build method, %%files and Group for VineSeed
  61. * Tue Mar 12 2002 Behdad Esfahbod <behdad@bamdad.org>
  62. - Use License instead of Copyright
  63. - Moved pkgconfig to devel package instead of lib package.
  64. * Sat Jan 26 2002 Behdad Esfahbod <behdad@bamdad.org>
  65. - CFLAGS changed to OPT_CFLAGS.
  66. * Wed Jan 9 2002 Behdad Esfahbod <behdad@bamdad.org>
  67. - First spec released.