]> git.pld-linux.org Git - packages/gstreamer.git/blob - gstreamer.spec
- start 0.4.1 version upgrade
[packages/gstreamer.git] / gstreamer.spec
1 Summary:        GStreamer Streaming-media framework runtime
2 Summary(pl):    GStreamer - biblioteki ¶rodowiska do obróbki strumieni
3 Name:           gstreamer
4 Version:        0.4.1
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        http://prdownloads.sourceforge.net/gstreamer/%{name}-%{version}.tar.bz2
9 URL:            http://gstreamer.net/
10 BuildRequires:  glib2-devel >= 2.0.0
11 BuildRequires:  libxml2-devel >= 2.4.17
12 BuildRequires:  nasm
13 BuildRequires:  pkgconfig
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 GStreamer is a streaming-media framework, based on graphs of filters
18 which operate on media data. Applications using this library can do
19 anything from real-time sound processing to playing videos, and just
20 about anything else media-related. Its plugin-based architecture means
21 that new data types or processing capabilities can be added simply by
22 installing new plugins.
23
24 %description -l pl
25 GStreamer to ¶rodowisko obróbki danych strumieniowych, bazuj±ce na
26 grafie filtrów operuj±cych na danych medialnych. Aplikacje u¿ywaj±ce
27 tej biblioteki mog± robiæ wszystko od przetwarzania d¼wiêku w czasie
28 rzeczywistym, do odtwarzania filmów i czegokolwiek innego zwi±zego z
29 mediami. Architektura bazuj±ca na wtyczkach pozwala na ³atwe dodawanie
30 nowych typów danych lub mo¿liwo¶ci obróbki.
31
32 %package devel
33 Summary:        Include files for GStreamer streaming-media framework
34 Summary(pl):    Pliki nag³ówkowe do ¶rodowiska obróbki strumieni GStreamer
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}
37
38 %description devel
39 This package contains the includes files necessary to develop
40 applications and plugins for GStreamer.
41
42 %description devel -l pl
43 Ten pakiet zawiera pliki nag³ówkowe potrzebne do rozwijania aplikacji
44 i wtyczek do GStreamera.
45
46 %package static
47 Summary:        GStreamer static libraries
48 Summary(pl):    Biblioteki statyczne GStreamer
49 Group:          Development/Libraries
50 Requires:       %{name}-devel = %{version}
51
52 %description static
53 Static versions of GStreamer libraries.
54
55 %description static -l pl
56 Statyczne wersje bibliotek GStreamer.
57
58 %prep
59 %setup -q
60
61 %build
62 %configure \
63         --enable-glib2 \
64         --enable-libmmx \
65         --enable-atomic
66
67 %{__make}
68
69 %install
70 rm -rf $RPM_BUILD_ROOT
71
72 %{__make} DESTDIR=$RPM_BUILD_ROOT install
73
74 %clean
75 rm -rf $RPM_BUILD_ROOT
76
77 %post
78 /sbin/ldconfig
79 %{_bindir}/gst-register --gst-mask=0
80
81 %postun -p /sbin/ldconfig
82
83 %files
84 %defattr(644,root,root,755)
85 %attr(755,root,root) %{_bindir}/*
86 %attr(755,root,root) %{_libdir}/lib*.so.*
87 %attr(755,root,root) %{_libdir}/gst/*.so*
88 %attr(755,root,root) %{_libdir}/gst/*.la
89 %{_mandir}/man1/*
90
91 %files devel
92 %defattr(644,root,root,755)
93 %attr(755,root,root) %{_libdir}/lib*.so
94 %{_includedir}/%{name}-%{version}
95 %{_pkgconfigdir}/*
96
97 %files static
98 %defattr(644,root,root,755)
99 %{_libdir}/lib*.a
100 %{_libdir}/gst/lib*.a
This page took 0.090945 seconds and 4 git commands to generate.