liblinebreak-vl.spec 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. Name: liblinebreak
  2. Version: 2.0
  3. Release: 1%{?_dist_release}
  4. Summary: A Unicode line-breaking library
  5. Group: Development/Libraries
  6. License: zlib
  7. URL: http://sourceforge.net/projects/vimgadgets/
  8. Source0: http://downloads.sourceforge.net/vimgadgets/%{name}-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildRequires: autoconf automake libtool
  11. %description
  12. liblinebreak is an implementation of the line breaking algorithm as
  13. described in Unicode 5.0.0 Standard Annex 14, Revision 19, available
  14. at http://www.unicode.org/reports/tr14/tr14-19.html
  15. %package devel
  16. Summary: Development files for %{name}
  17. Group: Development/Libraries
  18. Requires: %{name} = %{version}-%{release}
  19. %description devel
  20. The %{name}-devel package contains libraries and header files for
  21. developing applications that use %{name}.
  22. %prep
  23. %setup -q
  24. %configure --disable-static
  25. %build
  26. %__make %{?_smp_mflags}
  27. %install
  28. %__rm -rf $RPM_BUILD_ROOT
  29. %__make install DESTDIR=$RPM_BUILD_ROOT
  30. find $RPM_BUILD_ROOT -name '*.la' -exec %__rm -f {} ';'
  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 ChangeLog LICENCE NEWS README
  38. %{_libdir}/*.so.*
  39. %files devel
  40. %{_includedir}/*
  41. %{_libdir}/*.so
  42. %changelog
  43. * Thu Aug 12 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 2.0-1
  44. - initial build based on Fedora development
  45. * Sat Jul 3 2010 Michel Salim <salimma@fedoraproject.org> - 2.0-1
  46. - Update to 2.0
  47. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
  48. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  49. * Thu Jul 2 2009 Michel Salim <salimma@fedoraproject.org> - 1.2-1
  50. - Update to 1.2
  51. - Build as dynamic library, instead of static
  52. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-0.5.20080421cvs
  53. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  54. * Thu Jul 31 2008 Michel Salim <michel@berlin.local> - 0.9.6-0.4.20080421cvs%{?dist}
  55. - Rename package to liblinebreak, providing -{devel,static}
  56. * Mon Jul 14 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.3.20080421cvs
  57. - Change versioning scheme
  58. - Updated checkout instructions
  59. * Mon Jun 9 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.2
  60. - Rename to liblinebreak-devel, provides liblinebreak-static
  61. * Wed Jun 4 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.1
  62. - Initial package