|
|
|
@ -1,10 +1,10 @@
|
|
|
|
|
Summary: The Extensible Binary Meta Language library
|
|
|
|
|
Summary: Extensible Binary Meta Language library
|
|
|
|
|
Name: libebml
|
|
|
|
|
Version: 0.7.5
|
|
|
|
|
Release: 2
|
|
|
|
|
Version: 0.7.6
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
License: LGPL
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
URL: http://ebml.sourceforge.net/
|
|
|
|
|
URL: http://www.matroska.org/
|
|
|
|
|
Source: http://dl.matroska.org/downloads/libebml/libebml-%{version}.tar.bz2
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
|
@ -13,13 +13,19 @@ Extensible Binary Meta Language access library A library for reading
|
|
|
|
|
and writing files with the Extensible Binary Meta Language, a binary
|
|
|
|
|
pendant to XML.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Development files for libebml
|
|
|
|
|
Summary: Development files for the Extensible Binary Meta Language library
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
%{summary}.
|
|
|
|
|
Extensible Binary Meta Language access library A library for reading
|
|
|
|
|
and writing files with the Extensible Binary Meta Language, a binary
|
|
|
|
|
pendant to XML.
|
|
|
|
|
|
|
|
|
|
This package contains the files required to rebuild applications which
|
|
|
|
|
will use the Extensible Binary Meta Language library.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
@ -33,8 +39,11 @@ CXXFLAGS="$RPM_OPT_FLAGS" make -C make/linux %{?_smp_mflags}
|
|
|
|
|
%install
|
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
make -C make/linux \
|
|
|
|
|
prefix=$RPM_BUILD_ROOT%{_prefix} libdir=$RPM_BUILD_ROOT%{_libdir} install
|
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/libebml.so*
|
|
|
|
|
prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
|
|
|
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
|
|
|
install
|
|
|
|
|
# Needed for proper stripping of the library (still in 0.7.6)
|
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/libebml.so.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
@ -46,18 +55,24 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%defattr(-,root,root,0755)
|
|
|
|
|
%doc ChangeLog LICENSE.LGPL
|
|
|
|
|
%{_libdir}/libebml.so.*
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%defattr(-,root,root,0755)
|
|
|
|
|
%{_includedir}/ebml/
|
|
|
|
|
%{_libdir}/libebml.a
|
|
|
|
|
%{_libdir}/libebml.so
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Nov 29 2005 Matthias Saou <http://freshrpms.net/> 0.7.6-1
|
|
|
|
|
- Update to 0.7.6.
|
|
|
|
|
- Change URL to the project's one.
|
|
|
|
|
- Add a full description for the devel package.
|
|
|
|
|
- Some other minor spec file changes.
|
|
|
|
|
|
|
|
|
|
* Sun Jun 5 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.7.5-2
|
|
|
|
|
- Split development files into a devel subpackage.
|
|
|
|
|
- Run ldconfig at post (un)install time.
|
|
|
|
|