|
|
|
@ -1,13 +1,13 @@
|
|
|
|
|
Summary: Open audio/video container format library
|
|
|
|
|
Name: libmatroska
|
|
|
|
|
Version: 0.7.7
|
|
|
|
|
Release: 2
|
|
|
|
|
Version: 0.8.0
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
License: LGPL
|
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
|
URL: http://matroska.org/
|
|
|
|
|
URL: http://www.matroska.org/
|
|
|
|
|
Source0: http://dl.matroska.org/downloads/libmatroska/libmatroska-%{version}.tar.bz2
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n)
|
|
|
|
|
BuildRequires: libebml-devel >= 0.7.5
|
|
|
|
|
BuildRequires: libebml-devel >= 0.7.6
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Matroska is an extensible open standard Audio/Video container. It
|
|
|
|
@ -15,14 +15,21 @@ aims to become THE standard of multimedia container formats. Matroska
|
|
|
|
|
is usually found as .mkv files (matroska video) and .mka files
|
|
|
|
|
(matroska audio).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
|
Summary: Matroska development files
|
|
|
|
|
Summary: Matroska container format library development files
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
Requires: libebml-devel >= 0.7.5
|
|
|
|
|
Requires: libebml-devel >= 0.7.6
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
%{summary}.
|
|
|
|
|
Matroska is an extensible open standard Audio/Video container. It
|
|
|
|
|
aims to become THE standard of multimedia container formats. Matroska
|
|
|
|
|
is usually found as .mkv files (matroska video) and .mka files
|
|
|
|
|
(matroska audio).
|
|
|
|
|
|
|
|
|
|
This package contains the files required to rebuild applications which
|
|
|
|
|
will use the Matroska container format.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
@ -36,8 +43,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}/libmatroska.so*
|
|
|
|
|
prefix=$RPM_BUILD_ROOT%{_prefix} \
|
|
|
|
|
libdir=$RPM_BUILD_ROOT%{_libdir} \
|
|
|
|
|
install
|
|
|
|
|
# Needed for proper stripping of the library (still in 0.8.0)
|
|
|
|
|
chmod +x $RPM_BUILD_ROOT%{_libdir}/libmatroska.so.*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
@ -49,18 +59,23 @@ rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%defattr(-,root,root,0755)
|
|
|
|
|
%doc ChangeLog LICENSE.LGPL
|
|
|
|
|
%{_libdir}/libmatroska.so.*
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
|
%defattr(-,root,root,0755)
|
|
|
|
|
%{_includedir}/matroska/
|
|
|
|
|
%{_libdir}/libmatroska.a
|
|
|
|
|
%{_libdir}/libmatroska.so
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Tue Nov 29 2005 Matthias Saou <http://freshrpms.net/> 0.8.0-1
|
|
|
|
|
- Update to 0.8.0.
|
|
|
|
|
- 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.7-2
|
|
|
|
|
- Split development files into a devel subpackage.
|
|
|
|
|
- Run ldconfig at post (un)install time.
|
|
|
|
|