]> git.pld-linux.org Git - packages/mp4v2.git/blob - mp4v2.spec
- init
[packages/mp4v2.git] / mp4v2.spec
1 Summary:        MP4v2 library provides api for creation and modification of MP4 files
2 Name:           mp4v2
3 Version:        1.9.1
4 Release:        0.1
5 License:        MPL v1.1
6 Group:          Libraries
7 Source0:        http://mp4v2.googlecode.com/files/%{name}-%{version}.tar.bz2
8 # Source0-md5:  986701929ef15b03155ac4fb16444797
9 URL:            http://code.google.com/p/mp4v2/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 The MP4v2 library provides an API to create and modify mp4 files as
14 defined by ISO-IEC:14496-1:2001 MPEG-4 Systems. This file format is
15 derived from Apple's QuickTime file format that has been used as a
16 multimedia file format in a variety of platforms and applications. It
17 is a very powerful and extensible format that can accomodate
18 practically any type of media.
19
20 %package devel
21 Summary:        Header files for MP4v2
22 Group:          Development/Libraries
23 Requires:       %{name} = %{version}-%{release}
24
25 %description devel
26 Header files for MP4v2.
27
28 %package static
29 Summary:        Static MP4v2 library
30 Group:          Development/Libraries
31 Requires:       %{name}-devel = %{version}-%{release}
32
33 %description static
34 This package contains static version of MP4v2.
35
36 %prep
37 %setup -q
38
39 %build
40 %configure
41 %{__make}
42
43 %install
44 rm -rf $RPM_BUILD_ROOT
45
46 %{__make} install \
47         DESTDIR=$RPM_BUILD_ROOT
48
49 %clean
50 rm -rf $RPM_BUILD_ROOT
51
52 %post   -p /sbin/ldconfig
53 %postun -p /sbin/ldconfig
54
55 %files
56 %defattr(644,root,root,755)
57 %doc doc/*.txt
58 %attr(755,root,root) %{_bindir}/mp4track
59 %attr(755,root,root) %{_bindir}/mp4extract
60 %attr(755,root,root) %{_bindir}/mp4trackdump
61 %attr(755,root,root) %{_bindir}/mp4art
62 %attr(755,root,root) %{_bindir}/mp4tags
63 %attr(755,root,root) %{_bindir}/mp4subtitle
64 %attr(755,root,root) %{_bindir}/mp4chaps
65 %attr(755,root,root) %{_bindir}/mp4info
66 %attr(755,root,root) %{_bindir}/mp4file
67 %attr(755,root,root) %{_libdir}/libmp4v2.so.*.*.*
68 %attr(755,root,root) %ghost %{_libdir}/libmp4v2.so.?
69 %{_mandir}/man1/*
70
71 %files devel
72 %defattr(644,root,root,755)
73 %attr(755,root,root) %{_libdir}/libmp4v2.so
74 %{_includedir}/mp4v2
75
76 %files static
77 %defattr(644,root,root,755)
78 %attr(755,root,root) %{_libdir}/libmp4v2.a
This page took 0.190324 seconds and 4 git commands to generate.