fribidi-vl.spec 2.7 KB

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