source: projects/specs/trunk/lib/libl/liblinebreak/liblinebreak-vl.spec @ 9086

Revision 9086, 2.7 KB checked in by inagaki, 9 years ago (diff)

2014-11-14 Ryoichi INAGAKI <ryo1@…>

  • check, libpipeline: updated
  • liblinebreak, preload: change Group


Line 
1Name:           liblinebreak
2Version:        2.1
3Release:        2%{?_dist_release}
4Summary:        A Unicode line-breaking library
5
6Group:          System Environment/Libraries
7License:        zlib
8URL:            http://sourceforge.net/projects/vimgadgets/
9Source0:        http://downloads.sourceforge.net/vimgadgets/%{name}-%{version}.tar.gz
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildRequires:  autoconf automake libtool
13
14%description
15liblinebreak is an implementation of the line breaking algorithm as
16described in Unicode 5.0.0 Standard Annex 14, Revision 19, available
17at http://www.unicode.org/reports/tr14/tr14-19.html
18
19
20%package      devel
21Summary:      Development files for %{name}
22Summary(ja):  %{name} の開発用ファイル
23Group:        Development/Libraries
24Requires:     %{name} = %{version}-%{release}
25
26%description  devel
27The %{name}-devel package contains libraries and header files for
28developing applications that use %{name}.
29
30
31%prep
32%setup -q
33%configure --disable-static
34
35
36%build
37%__make %{?_smp_mflags}
38
39
40%install
41%__rm -rf $RPM_BUILD_ROOT
42%__make install DESTDIR=$RPM_BUILD_ROOT
43find $RPM_BUILD_ROOT -name '*.la' -exec %__rm -f {} ';'
44
45
46%clean
47%__rm -rf $RPM_BUILD_ROOT
48
49
50%post -p /sbin/ldconfig
51
52%postun -p /sbin/ldconfig
53
54
55%files
56%defattr(-,root,root,-)
57%doc ChangeLog LICENCE NEWS README
58%{_libdir}/*.so.*
59
60%files devel
61%{_includedir}/*
62%{_libdir}/*.so
63
64
65%changelog
66* Thu Nov 13 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 2.1-2
67- Moved liblinebreak to System Environment/Libraries Group
68
69* Sat Jan 28 2012 Munehiro Yamamoto <munepi@vinelinux.org> 2.1-1
70- Update to 2.1
71
72* Thu Aug 12 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 2.0-1
73- initial build based on Fedora development
74
75* Sat Jul  3 2010 Michel Salim <salimma@fedoraproject.org> - 2.0-1
76- Update to 2.0
77
78* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
79- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
80
81* Thu Jul  2 2009 Michel Salim <salimma@fedoraproject.org> - 1.2-1
82- Update to 1.2
83- Build as dynamic library, instead of static
84
85* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-0.5.20080421cvs
86- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
87
88* Thu Jul 31 2008 Michel Salim <michel@berlin.local> - 0.9.6-0.4.20080421cvs%{?dist}
89- Rename package to liblinebreak, providing -{devel,static}
90
91* Mon Jul 14 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.3.20080421cvs
92- Change versioning scheme
93- Updated checkout instructions
94
95* Mon Jun  9 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.2
96- Rename to liblinebreak-devel, provides liblinebreak-static
97
98* Wed Jun  4 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.1
99- Initial package
100
Note: See TracBrowser for help on using the repository browser.