courier-unicode-vl.spec 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. %define ver 1.4
  2. %define rel 1
  3. Summary: Courier Unicode Library
  4. Name: courier-unicode
  5. Version: %{ver}
  6. Release: %{rel}%{?_dist_release}
  7. License: GPLv3
  8. Group: System Environment/Libraries
  9. URL: http://www.courier-mta.org/unicode/
  10. Source0: %{name}-%{version}.tar.bz2
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. %description
  13. This library implements several algorithms related to the Unicode Standard:
  14. - Look up uppercase, lowercase, and titlecase equivalents of a unicode
  15. character.
  16. - Implementation of grapheme and work breaking rules.
  17. - Implementation of line breaking rules.
  18. - Several ancillary functions, like looking up the unicode character
  19. that corresponds to some HTML 4.0 entity (such as “&”, for example),
  20. and determining the normal width or a double-width status of a unicode
  21. character. Also, an adaptation of the iconv(3) API for this unicode library.
  22. This library also implements C++ bindings for these algorithms.
  23. %package devel
  24. Summary: Libraries and header files for %{name}
  25. Group: Development/Libraries
  26. Requires: %{name} = %{version}-%{release}
  27. %description devel
  28. Libraries and header files for %{name}
  29. Vendor: Project Vine
  30. Distribution: Vine Linux
  31. Packager: iwaim
  32. %prep
  33. %setup -q
  34. %configure --enable-shared --enable-static=no
  35. %build
  36. %__make
  37. %install
  38. rm -rf $RPM_BUILD_ROOT
  39. %makeinstall
  40. %clean
  41. rm -rf $RPM_BUILD_ROOT
  42. %files
  43. %defattr(-,root,root,-)
  44. %doc AUTHORS COPYING ChangeLog README
  45. %{_mandir}/man?/*
  46. %{_libdir}/*.so.*
  47. %files devel
  48. %{_includedir}/*
  49. %{_libdir}/*.so
  50. %changelog
  51. * Tue Dec 29 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.4-1
  52. - update to 1.4
  53. * Wed Jan 7 2015 IWAI, Masaharu <iwaim.sub@gmail.com> 1.1-1
  54. - initial build for Vine Linux