fribidi-vl.spec 2.7 KB

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