]> git.pld-linux.org Git - packages/mlt.git/blob - mlt.spec
- converted to UTF-8
[packages/mlt.git] / mlt.spec
1 #
2 # TODO:
3 # - bconds
4 # - currently avformat support is broken, the hell knows why
5 #
6 Summary:        MLT - open source multimedia framework
7 Summary(pl.UTF-8):   MLT - szkielet multimedialny o otwartych źródłach
8 Name:           mlt
9 Version:        0.2.2
10 Release:        0.2
11 License:        GPL
12 Group:          X11/Applications/Multimedia
13 Source0:        http://dl.sourceforge.net/mlt/%{name}-%{version}.tar.gz
14 # Source0-md5:  9d4a3d308b1314a117f692766fb15e90
15 URL:            http://www.dennedy.org/mlt/twiki/bin/view/MLT/WebHome
16 BuildRequires:  SDL-devel
17 #BuildRequires: ffmpeg-devel
18 BuildRequires:  gtk+2-devel
19 BuildRequires:  ladspa-devel
20 BuildRequires:  lame-libs-devel
21 BuildRequires:  libdv-devel >= 0.102
22 BuildRequires:  libmad-devel
23 BuildRequires:  libquicktime-devel
24 BuildRequires:  libsamplerate-devel
25 BuildRequires:  libvorbis-devel >= 1:1.0.1
26 BuildRequires:  libxml2-devel >= 2.5
27 BuildRequires:  pkgconfig
28 BuildRequires:  qt-devel
29 BuildRequires:  sox-devel
30 BuildRequires:  which
31 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
32
33 %description
34 MLT is an open source multimedia framework, designed and developed for
35 television broadcasting. It provides a toolkit for broadcasters, video
36 editors, media players, transcoders, web streamers and many more types
37 of applications. The functionality of the system is provided via an
38 assortment of ready to use tools, XML authoring components, and an
39 extendible plug-in based API.
40
41 %description -l pl.UTF-8
42 MLT to szkielet multimedialny o otwartych źródłach zaprojektowany i
43 rozwijany do nadawania telewizji. Udostępnia zestaw narzędzi dla
44 nadawców, edytory obrazu, odtwarzacze mediów, transkodery, narzędzia
45 do udostępniania strumieni przez WWW i wiele innych rodzajów
46 aplikacji. Funkcjonalność systemu jest zapewniona poprzez asortyment
47 gotowych do użycia narzędzi, komponentów do tworzenia XML-a i
48 rozszerzalne API oparte na wtyczkach.
49
50 %package devel
51 Summary:        Header files for MLT
52 Summary(pl.UTF-8):   Pliki nagłówkowe dla MLT
53 Group:          Development/Libraries
54 Requires:       mlt
55
56 %description devel
57 This package contains header files for MLT.
58
59 %description devel -l pl.UTF-8
60 Ten pakiet zawiera pliki nagłówkowe dla MLT.
61
62 %prep
63 %setup -q
64
65 %build
66 %configure \
67         --enable-gpl \
68 %ifarch %{x8664}
69         --disable-motion-est \
70 %else
71         --enable-motion-est \
72 %endif
73         --disable-debug \
74 %ifarch i586 i686 %{x8664}
75         --disable-mmx \
76 %else
77         --enable-mmx \
78 %endif
79         --qimage-includedir=%{_includedir}/qt \
80         --qimage-libdir=%{_libdir}
81         
82 %{__make} \
83         CC="%{__cc}"
84
85 %install
86 rm -rf $RPM_BUILD_ROOT
87
88 %{__make} install \
89         DESTDIR=$RPM_BUILD_ROOT
90
91 %clean
92 rm -rf $RPM_BUILD_ROOT
93
94 %post   -p /sbin/ldconfig
95 %postun -p /sbin/ldconfig
96
97 %files
98 %defattr(644,root,root,755)
99 %doc ChangeLog README
100 %attr(755,root,root) %{_bindir}/*
101 %attr(755,root,root) %{_libdir}/*.so*
102 %{_datadir}/mlt*
103
104 %files devel
105 %defattr(644,root,root,755)
106 %{_pkgconfigdir}/*.pc
107 %{_includedir}/mlt*
This page took 0.064667 seconds and 4 git commands to generate.