source: projects/specs/branches/6/lib/libl/liblinebreak/liblinebreak-vl.spec @ 5532

Revision 5532, 2.6 KB checked in by munepi, 12 years ago (diff)

updated liblinebreak-vl.spec

Line 
1Name:           liblinebreak
2Version:        2.1
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* Sat Jan 28 2012 Munehiro Yamamoto <munepi@vinelinux.org> 2.1-1
66- Update to 2.1
67
68* Thu Aug 12 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 2.0-1
69- initial build based on Fedora development
70
71* Sat Jul  3 2010 Michel Salim <salimma@fedoraproject.org> - 2.0-1
72- Update to 2.0
73
74* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
75- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
76
77* Thu Jul  2 2009 Michel Salim <salimma@fedoraproject.org> - 1.2-1
78- Update to 1.2
79- Build as dynamic library, instead of static
80
81* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-0.5.20080421cvs
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
83
84* Thu Jul 31 2008 Michel Salim <michel@berlin.local> - 0.9.6-0.4.20080421cvs%{?dist}
85- Rename package to liblinebreak, providing -{devel,static}
86
87* Mon Jul 14 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.3.20080421cvs
88- Change versioning scheme
89- Updated checkout instructions
90
91* Mon Jun  9 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.2
92- Rename to liblinebreak-devel, provides liblinebreak-static
93
94* Wed Jun  4 2008 Michel Alexandre Salim <salimma@fedoraproject.org> - 0.9.6-0.1
95- Initial package
96
Note: See TracBrowser for help on using the repository browser.