]> git.pld-linux.org Git - packages/ffms2.git/commitdiff
- new auto/th/ffmpegsource-2_14-1
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 2 Nov 2010 20:17:13 +0000 (20:17 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ffmpegsource.spec -> 1.1

ffmpegsource.spec [new file with mode: 0644]

diff --git a/ffmpegsource.spec b/ffmpegsource.spec
new file mode 100644 (file)
index 0000000..d9d1014
--- /dev/null
@@ -0,0 +1,114 @@
+Summary:       FFmpegSource - FFmpeg wrapper library
+Summary(pl.UTF-8):     FFmpegSource - biblioteka obudowująca FFmpeg
+Name:          ffmpegsource
+Version:       2.14
+Release:       1
+License:       MIT (ffmpegsource itself), GPL v3+ (forced by ffmpeg)
+Group:         Libraries
+Source0:       http://ffmpegsource.googlecode.com/files/%{name}-%{version}_src.7z
+# Source0-md5: 59e7d09a4c8af57a7907b2ec58b9f249
+URL:           http://code.google.com/p/ffmpegsource/
+BuildRequires: autoconf >= 2.58
+BuildRequires: automake
+BuildRequires: ffmpeg-devel >= 0.5.0
+BuildRequires: libstdc++-devel
+BuildRequires: libtool >= 2:2.0
+BuildRequires: p7zip
+BuildRequires: pkgconfig >= 1:0.22
+BuildRequires: zlib-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+FFmpegSource (usually known as FFMS or FFMS2) is a cross-platform
+wrapper library around FFmpeg, plus some additional components to deal
+with file formats FFmpeg's libavformat has (or used to have) problems
+with. It gives you an easy, convenient way to say "open and decompress
+this media file for me, I don't care how you do it" and get frame- and
+sample-accurate access (usually), without having to bother with the
+sometimes less than straightforward and less than perfectly documented
+FFmpeg API.
+
+%description -l pl.UTF-8
+FFmpegSource (zwykle zwana FFMS lub FFMS2) to wieloplatformowa
+biblioteka obudowująca FFmpeg wraz z paroma dodatkowymi komponentami
+mającymi radzić sobie z formatami plików, z którymi libavformat z
+FFmpeg ma (lub miał) problemy. Umożliwia w łatwy sposób zażądanie
+"otwórz i zdekompresuj ten plik, nieważne jak" i uzyskanie dostępu
+(zwykle) z dokładnością do ramek i próbek, bez potrzeby zajmowania
+się często złożonym, nie najlepiej udokumentowanym API FFmpeg.
+
+%package devel
+Summary:       Header files for FFmpegSource library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki FFmpegSource
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+Requires:      ffmpeg-devel >= 0.5.0
+Requires:      libstdc++-devel
+Requires:      zlib-devel
+
+%description devel
+Header files for FFmpegSource library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki FFmpegSource.
+
+%package static
+Summary:       Static FFmpegSource library
+Summary(pl.UTF-8):     Statyczna biblioteka FFmpegSource
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static FFmpegSource library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka FFmpegSource.
+
+%prep
+%setup -q -c -T -n %{name}-%{version}_src
+7z -o.. x %{SOURCE0}
+
+%{__rm} configure
+
+%build
+%{__libtoolize}
+%{__aclocal} -I m4
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+       --enable-shared
+%{__make} \
+       V=1
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc COPYING
+%attr(755,root,root) %{_bindir}/ffmsindex
+%attr(755,root,root) %{_libdir}/libffms2.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libffms2.so.2
+
+%files devel
+%defattr(644,root,root,755)
+%doc doc/*.{html,css}
+%attr(755,root,root) %{_libdir}/libffms2.so
+%{_libdir}/libffms2.la
+%{_includedir}/ffms.h
+%{_includedir}/ffmscompat.h
+%{_pkgconfigdir}/ffms2.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libffms2.a
This page took 0.087639 seconds and 4 git commands to generate.