Changes of Revision 53
[-] | Changed | ffmpeg.spec |
x 1
2 3 %package -n %{libname} 4 Group: System/Libraries 5 -Summary: metapackage for ffmpeg shared libraries 6 +Summary: Metapackage for ffmpeg shared libraries 7 Summary(de): Metapaket für die ffmpeg Bibliotheken 8 Requires: %{libnameavcodec} = %{version}-%{release} 9 Requires: %{libnameavdevice} = %{version}-%{release} 10
11 12 %package -n %{libnameavcodec} 13 Group: System/Libraries 14 -Summary: ffmpeg %{libavcodec} 15 +Summary: FFmpeg %{libavcodec} 16 Provides: %{libavcodec} = %{version}-%{release} 17 18 %description -n %{libnameavcodec} 19
20 21 %package -n %{libnameavdevice} 22 Group: System/Libraries 23 -Summary: ffmpeg %{libavdevice} 24 +Summary: FFmpeg %{libavdevice} 25 Provides: %{libavdevice} = %{version}-%{release} 26 27 %description -n %{libnameavdevice} 28
29 30 %package -n %{libnameavformat} 31 Group: System/Libraries 32 -Summary: ffmpeg %{libavformat} 33 +Summary: FFmpeg %{libavformat} 34 Provides: %{libavformat} = %{version}-%{release} 35 36 %description -n %{libnameavformat} 37
38 39 %package -n %{libnameavutil} 40 Group: System/Libraries 41 -Summary: ffmpeg %{libavutil} 42 +Summary: FFmpeg %{libavutil} 43 Provides: %{libavutil} = %{version}-%{release} 44 45 %description -n %{libnameavutil} 46
47 48 %package -n %{libnamepostproc} 49 Group: System/Libraries 50 -Summary: ffmpeg %{libpostproc} 51 +Summary: FFmpeg %{libpostproc} 52 Provides: %{libpostproc} = %{version}-%{release} 53 54 %description -n %{libnamepostproc} 55
56 57 %package -n %{libnameswscale} 58 Group: System/Libraries 59 -Summary: ffmpeg %{libswscale} 60 +Summary: FFmpeg %{libswscale} 61 Provides: %{libswscale} = %{version}-%{release} 62 63 %description -n %{libnameswscale} 64
65 [ "%{buildroot}" != "/" ] && %{__rm} -rf %{buildroot} 66 67 %post -n %{libname} 68 -%run_ldconfig 69 +/sbin/ldconfig 70 71 %postun -n %{libname} 72 -%run_ldconfig 73 +/sbin/ldconfig 74 + 75 +%post -n %{libnameavcodec} 76 +/sbin/ldconfig 77 + 78 +%postun -n %{libnameavcodec} 79 +/sbin/ldconfig 80 + 81 +%post -n %{libnameavdevice} 82 +/sbin/ldconfig 83 + 84 +%postun -n %{libnameavdevice} 85 +/sbin/ldconfig 86 + 87 +%post -n %{libnameavformat} 88 +/sbin/ldconfig 89 + 90 +%postun -n %{libnameavformat} 91 +/sbin/ldconfig 92 + 93 +%post -n %{libnameavutil} 94 +/sbin/ldconfig 95 + 96 +%postun -n %{libnameavutil} 97 +/sbin/ldconfig 98 + 99 +%post -n %{libnamepostproc} 100 +/sbin/ldconfig 101 + 102 +%postun -n %{libnamepostproc} 103 +/sbin/ldconfig 104 + 105 +%post -n %{libnameswscale} 106 +/sbin/ldconfig 107 + 108 +%postun -n %{libnameswscale} 109 +/sbin/ldconfig 110 111 %files 112 %defattr(-,root,root) 113 -%doc Changelog COPYING.* CREDITS INSTALL MAINTAINERS README doc 114 +%doc Changelog COPYING.* CREDITS INSTALL MAINTAINERS README 115 %{_bindir}/* 116 %dir %{_libdir}/vhook 117 %{_libdir}/vhook/* 118 |