source: projects/specs/trunk/lib/libe/libebml/libebml-vl.spec @ 521

Revision 521, 3.4 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary:        Extensible Binary Meta Language library
2Name:           libebml
3Version:        0.7.8
4Release:        1%{?_dist_release}
5License:        LGPL
6Group:          System Environment/Libraries
7URL:            http://www.matroska.org/
8Source:         http://dl.matroska.org/downloads/libebml/libebml-%{version}.tar.bz2
9BuildRoot:      %{_tmppath}/%{name}-%{version}-root
10
11%description
12Extensible Binary Meta Language access library A library for reading
13and writing files with the Extensible Binary Meta Language, a binary
14pendant to XML.
15
16%package        devel
17Summary:        Development files for the Extensible Binary Meta Language library
18Group:          Development/Libraries
19Requires:       %{name} = %{version}-%{release}
20
21%description    devel
22Extensible Binary Meta Language access library A library for reading
23and writing files with the Extensible Binary Meta Language, a binary
24pendant to XML.
25
26This package contains the files required to rebuild applications which
27will use the Extensible Binary Meta Language library.
28
29
30%prep
31%setup -q
32
33%build
34CXXFLAGS="$RPM_OPT_FLAGS" make -C make/linux %{?_smp_mflags}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make -C make/linux \
39  prefix=$RPM_BUILD_ROOT%{_prefix} \
40  libdir=$RPM_BUILD_ROOT%{_libdir} \
41  install
42# Needed for proper stripping of the library (still in 0.7.6)
43chmod +x $RPM_BUILD_ROOT%{_libdir}/libebml.so.*
44
45
46%clean
47rm -rf $RPM_BUILD_ROOT
48
49%post -p /sbin/ldconfig
50%postun -p /sbin/ldconfig
51
52
53%files
54%defattr(-,root,root,0755)
55%doc ChangeLog LICENSE.LGPL
56%{_libdir}/libebml.so.*
57
58%files devel
59%defattr(-,root,root,0755)
60%{_includedir}/ebml/
61%{_libdir}/libebml.a
62%{_libdir}/libebml.so
63
64
65%changelog
66* Mon Sep 22 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.8-1
67- new upstream release
68- applied new versioning policy
69
70* Sun May 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.7-1vl2
71- rebuilt with new toolchain
72
73* Tue Aug  8 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.7.7-1vl1
74- inital build for Vine Linux
75
76* Wed Apr 12 2006 Dams <anvil[AT]livna.org> - 0.7.7-1
77- Updated to 0.7.7
78
79* Thu Mar 16 2006 Dams <anvil[AT]livna.org> - 0.7.6-2.fc5
80- Release bump
81
82* Tue Nov 29 2005 Matthias Saou <http://freshrpms.net/> 0.7.6-1
83- Update to 0.7.6.
84- Change URL to the project's one.
85- Add a full description for the devel package.
86- Some other minor spec file changes.
87
88* Sun Jun  5 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.5-2
89- Split development files into a devel subpackage.
90- Run ldconfig at post (un)install time.
91- Fix shared library file modes.
92
93* Wed May 25 2005 Jeremy Katz <katzj@redhat.com> - 0.7.5-1
94- update to 0.7.5 (fixes x86_64 build)
95- incldue shared libs
96
97* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.7.3-3
98- rebuild on all arches
99
100* Sun Feb 27 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.3-2
101- 0.7.3.
102
103* Wed Nov 10 2004 Matthias Saou <http://freshrpms.net/> 0.7.2-2
104- Update to 0.7.2.
105- Bump release to provide Extras upgrade path.
106
107* Sun Aug 29 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.1-0.fdr.1
108- Update to 0.7.1.
109- Honor $RPM_OPT_FLAGS.
110
111* Mon Jul 12 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.7.0-0.fdr.1
112- Update to 0.7.0.
113- Improved 64-bit arch build fix.
114
115* Wed May  19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.6.5-0.fdr.2
116- Change linux makefile to use lib64 ifarch x86_64 for sane build
117
118* Sun Apr  4 2004 Dams <anvil[AT]livna.org> 0:0.6.5-0.fdr.1
119- Updated to 0.6.5
120
121* Sun Feb 29 2004 Dams <anvil[AT]livna.org> 0:0.6.4-0.fdr.2
122- Added licenses file as doc
123
124* Thu Sep  4 2003 Dams <anvil[AT]livna.org>
125- Initial build.
126
127
Note: See TracBrowser for help on using the repository browser.