blob: 00aeee17ccda8742acc00cf8ce838065b1643900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
Summary: Library for working with files using the mp4 container format
Name: libmp4v2
Version: 2.1.3
Release: 1
License: MPLv1.1
URL: https://mp4v2.org/
Source0: https://github.com/enzo1982/mp4v2/releases/download/v%{version}/mp4v2-%{version}.tar.bz2
BuildRequires: make
BuildRequires: gcc-c++
# BuildRequires: python3 help2man
%description
The libmp4v2 library provides an abstraction layer for working with files
using the mp4 container format. This library is developed by mpeg4ip project
and is an exact copy of the library distributed in the mpeg4ip package.
%package devel
Summary: Development files for the mp4v2 library
Requires: %{name}%{_isa} = %{version}-%{release}
%description devel
Development files needed to develop and compile programs
using the libmp4v2 library.
%prep
%autosetup -p1 -n mp4v2-%{version}
%build
%configure --disable-static
%make_build
%install
%make_install
find %{buildroot} -name '*.la' -delete
%ldconfig_scriptlets
%files
%doc README doc/*txt
%license COPYING
%{_bindir}/*
%{_libdir}/libmp4v2.so.2*
%{_mandir}/man1/mp4*.1*
%files devel
%{_includedir}/mp4v2/
%{_libdir}/pkgconfig/mp4v2.pc
%{_libdir}/libmp4v2.so
%changelog
* Mon Aug 19 2024 binshuo <binshuo.oerv@isrc.iscas.ac.cn> - 2.1.3-1
- init package
|