source: projects/specs/tags/6_0_REL/lib/libl/liblinebreak-vl.spec @ 1568

Revision 1568, 2.5 KB checked in by munepi, 14 years ago (diff)

NEW: fbreader, liblinebreak

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