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