source: projects/specs/trunk/lib/libm/libmp4v2/libmp4v2-vl.spec @ 9439

Revision 9439, 4.0 KB checked in by inagaki, 9 years ago (diff)

2015-03-18 Ryoichi INAGAKI <ryo1@…>

  • cdrdao: rebuilt
  • digikam: fixed Group
  • easytag, libao, libcrystalhd, libmp4v2: updated


Line 
1%define projname mp4v2
2
3Summary: Library for working with files using the mp4 container format
4Name: libmp4v2
5Version: 2.0.0
6Release: 1%{?_dist_release}
7License: MPLv1.1
8Group: System Environment/Libraries
9URL: http://code.google.com/p/mp4v2
10
11Source0: http://mp4v2.googlecode.com/files/%{projname}-%{version}.tar.bz2
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14Obsoletes: self-build-libmp4v2
15
16Vendor:         Project Vine
17Distribution:   Vine Linux
18Packager:       munepi
19
20%description
21The libmp4v2 library provides an abstraction layer for working with files
22using the mp4 container format. This library is developed by mpeg4ip project
23and is an exact copy of the library distributed in the mpeg4ip package.
24
25
26%package devel
27Summary: Development files for the mp4v2 library
28Summary(ja): mp4v2 ライブラリの開発用ファイル
29Group: Development/Libraries
30Requires: %{name} = %{version}-%{release}
31
32%description devel
33Development files and documentation needed to develop and compile programs
34using the libmp4v2 library.
35
36
37%prep
38%setup -q -n %{projname}-%{version}
39
40%build
41%configure \
42    --disable-static \
43    --disable-dependency-tracking
44
45%{__make} %{?_smp_mflags}
46
47
48%install
49%{__rm} -rf %{buildroot}
50%{__make} install DESTDIR=%{buildroot}
51
52# remove unpackaged files
53find %{buildroot} -name '*.la' -exec rm -f {} ';'
54
55%clean
56%{__rm} -rf %{buildroot}
57
58
59%post -p /sbin/ldconfig
60
61%postun -p /sbin/ldconfig
62
63
64%files
65%defattr(-,root,root)
66%doc README COPYING doc/Documentation.txt doc/Authors.txt doc/ReleaseNotes.txt doc/BuildSource.txt doc/ToolGuide.txt
67%{_bindir}/*
68%{_libdir}/libmp4v2.so.2*
69%{_mandir}/man1/*
70
71%files devel
72%defattr(-,root,root)
73%dir %{_includedir}/%{projname}
74%{_includedir}/%{projname}/*.h
75%{_libdir}/*.so
76
77
78%changelog
79* Tue Mar 17 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 2.0.0-1
80- updated to 2.0.0
81
82* Wed Nov  2 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-6
83- s/self-build-liblibmp4v2/self-build-libmp4v2/
84
85* Wed Nov  2 2011 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-5
86- added Obsoletes: self-build-liblibmp4v2
87- added Vendor, Distribution, Packager tags
88- fixed %%files
89
90* Sat Mar 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-4
91- change release to sync with self-build-libmp4v2
92
93* Thu Mar 04 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-3
94- fixed the permission of /usr/include/mp4v2 to access it by group, others
95
96* Sat Feb 20 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-2
97- added --disable-gch in configure options
98
99* Thu Feb 18 2010 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.1-1
100- new upstream release
101- changed URL: to http://code.google.com/p/mp4v2/
102  MP4v2 was originally bundled with mpeg4ip library,
103  but has been moved into its own maintained library
104  due to a combination of the cessation of support of mpeg4ip
105  and the usefulness of this library on its own.
106
107* Tue May 26 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.5.0.1-2
108- change release to sync with self-build-libmp4v2
109
110* Sun Jan 11 2009 Munehiro Yamamoto <munepi@cg8.so-net.ne.jp> 1.5.0.1-1
111- initial build
112
113* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.5.0.1-6
114- Autorebuild for GCC 4.3
115
116* Wed Aug 22 2007 Matthias Saou <http://freshrpms.net/> 1.5.0.1-5
117- Rebuild for new BuildID feature.
118
119* Sun Aug  5 2007 Matthias Saou <http://freshrpms.net/> 1.5.0.1-4
120- Update License field.
121
122* Fri Dec 15 2006 Matthias Saou <http://freshrpms.net/> 1.5.0.1-3
123- Spec file cleanup (habits, mostly) preparing to submit for Extras inclusion.
124
125* Fri Oct 06 2006 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 1.5.0.1-2
126- rebuilt for unwind info generation, broken in gcc-4.1.1-21
127
128* Tue Jul 18 2006 Noa Resare <noa@resare.com> 1.5.0.1-1
129- new upstream release
130
131* Sat May 13 2006 Noa Resare <noa@resare.com> 1.4.1-3
132- disabled static lib
133- use DESTDIR
134- disable-dependency-tracking for faster builds
135- removed a manpage template file apt.mpt.gz
136
137* Mon May 08 2006 Noa Resare <noa@resare.com> 1.4.1-2
138- specfile cleanups
139
140* Fri May 05 2006 Noa Resare <noa@resare.com> 1.4.1-1.lvn5
141- initial release
142
Note: See TracBrowser for help on using the repository browser.