]> git.pld-linux.org Git - packages/libdv.git/blob - libdv.spec
- few cosmetics,
[packages/libdv.git] / libdv.spec
1 Summary:        DV video software codec
2 Summary(pl):    Biblioteka do obs³ugi formatu wideo DV
3 Name:           libdv
4 Version:        0.5
5 Release:        1
6 License:        GPL
7 Group:          X11/Libraries
8 Group(de):      X11/Libraries
9 Group(es):      X11/Bibliotecas
10 Group(pl):      X11/Biblioteki
11 Source0:        http://download.sourceforge.net/libdv/%{name}-%{version}.tar.gz
12 Patch0:         %{name}-opt.patch
13 URL:            http://libdv.sourceforge.net/
14 BuildRequires:  XFree86-devel
15 BuildRequires:  autoconf
16 BuildRequires:  gtk+-devel
17 BuildRequires:  popt-devel
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %define         _prefix         /usr/X11R6
21
22 %description
23 The Quasar DV codec (libdv) is a software codec for DV video. DV is
24 the encoding format used by most digital camcorders, typically those
25 that support the IEEE 1394 (aka FireWire or i.Link) interface. libdv
26 was developed according to the official standards for DV video, IEC
27 61834 and SMPTE 314M. See http://libdv.sourceforge.net/ for more.
28
29 %package -n dv
30 Summary:        Programs to encode and play DV files
31 Group:          X11/Applications/Multimedia
32 Group(de):      X11/Applikationen/Multimedia
33 Group(pl):      X11/Aplikacje/Multimedia
34 Requires:       %{name} = %{version}
35
36 %description -n dv
37 Programs to encode and play DV files.
38
39 %package devel
40 Summary:        DV library headers
41 Summary(pl):    Pliki nag³ówkowe biblioteki DV
42 Group:          Development/Libraries
43 Group(de):      Entwicklung/Libraries
44 Group(fr):      Development/Librairies
45 Group(pl):      Programowanie/Biblioteki
46 Requires:       %{name} = %{version}
47
48 %description devel
49 This is the libraries, include files and other resources you can use
50 to incorporate libdv into applications.
51
52 %package static
53 Summary:        DV static libraries
54 Summary(pl):    Statyczne biblioteki do obs³ugi formatu DV
55 Group:          Development/Libraries
56 Group(de):      Entwicklung/Libraries
57 Group(fr):      Development/Librairies
58 Group(pl):      Programowanie/Biblioteki
59 Requires:       %{name} = %{version}
60
61 %description static
62 This is package with static libdv libraries.
63
64 %prep
65 %setup  -q
66 %patch0 -p1
67
68 %build
69 autoconf
70 %configure \
71         --enable-shared \
72         --without-debug
73
74 %{__make}
75
76 %install
77 rm -rf $RPM_BUILD_ROOT
78
79 %{__make} install DESTDIR=$RPM_BUILD_ROOT
80
81 gzip -9nf README ChangeLog NEWS TODO
82
83 %post   -p /sbin/ldconfig
84 %postun -p /sbin/ldconfig
85
86 %clean
87 rm -rf $RPM_BUILD_ROOT
88
89 %files
90 %defattr(644,root,root,755)
91 %attr(755,root,root) %{_libdir}/lib*.so.*
92
93 %files -n dv
94 %defattr(644,root,root,755)
95 %attr(755,root,root) %{_bindir}/*
96
97 %files devel
98 %defattr(644,root,root,755)
99 %doc *.gz
100 %attr(755,root,root) %{_libdir}/lib*.so
101 %{_includedir}/libdv
102
103 %files static
104 %defattr(644,root,root,755)
105 %{_libdir}/lib*.a
This page took 0.049143 seconds and 4 git commands to generate.