]> git.pld-linux.org Git - packages/zvbi.git/blob - zvbi.spec
- GPL v2+
[packages/zvbi.git] / zvbi.spec
1 Summary:        Raw VBI, Teletext and Closed Caption decoding library
2 Summary(pl):    Biblioteka dekoduj±ca VBI
3 Name:           zvbi
4 Version:        0.2.1
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://unc.dl.sourceforge.net/sourceforge/zapping/%{name}-%{version}.tar.bz2
9 Patch0:         %{name}-ac_fixes.patch
10 URL:            http://zapping.sourceforge.net/
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRequires:  libunicode-devel
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 VBI stands for Vertical Blanking Interval, a gap between the image
19 data transmitted in an analog video signal. This gap is used to
20 transmit AM modulated data for various data services like Teletext and
21 Closed Caption.
22
23 The zvbi library provides routines to read from raw VBI sampling
24 devices, to demodulate raw to sliced VBI data, and to interpret the
25 data of several popular services. It has been written for the Zapping
26 TV viewer <http://zapping.sourceforge.net/>.
27
28 %description -l pl
29 VBI jest skrótem od Vertical Blanking Interval, czyli interwa³
30 wygaszania pionowego, który jest odstêpem pomiêdzy danymi obrazu
31 transmitowanymi w analogowym sygnale wideo. Ten odstêp jest u¿ywany do
32 transmisji danych rozmaitych us³ug takich, jak teletekst i Closed
33 Caption, modulowanych w AM.
34
35 Biblioteka zvbi udostêpnia funkcje do odczytu z surowych urz±dzeñ
36 próbkuj±cych VBI, do demodulacji surowych danych VBI i do
37 interpretacji tych dlanych dla kilku popularnych us³ug. Zosta³a ona
38 napisana dla programu TV Zapping <http://zapping.sourceforge.net/>.
39
40 %package devel
41 Summary:        zvbi heades files
42 Summary(pl):    Pliki nag³ówkowe do zvbi
43 Group:          Development/Libraries
44 Requires:       %{name} = %{version}
45 Requires:       libunicode-devel
46
47 %description devel
48 Header files and documentation for the support library for the zvbi
49 library.
50
51 %description devel -l pl
52 Pliki nag³ówkowe i dokumentacja do zvbi.
53
54 %package static
55 Summary:        Static zvbi library
56 Summary(pl):    Biblioteka statyczna do zvbi
57 Group:          Development/Libraries
58 Requires:       %{name}-devel = %{version}
59
60 %description static
61 Static zvbi library.
62
63 %description static -l pl
64 Statyczna biblioteka zvbi.
65
66 %prep
67 %setup -q
68 %patch0 -p1
69
70 %build
71 rm -f missing
72 %{__libtoolize}
73 aclocal
74 %{__autoconf}
75 %{__automake}
76 %configure
77 %{__make}
78
79 %install
80 rm -rf $RPM_BUILD_ROOT
81
82 %{__make} install \
83         DESTDIR=$RPM_BUILD_ROOT
84
85 %find_lang %{name}
86
87 %post   -p /sbin/ldconfig
88 %postun -p /sbin/ldconfig
89
90 %clean
91 rm -rf $RPM_BUILD_ROOT
92
93 %files -f %{name}.lang
94 %defattr(644,root,root,755)
95 %doc AUTHORS BUGS NEWS README TODO
96 %attr(755,root,root) %{_libdir}/lib*.so.*.*
97
98 %files devel
99 %defattr(644,root,root,755)
100 %doc ChangeLog doc/html
101 %attr(755,root,root) %{_libdir}/lib*.so
102 %attr(755,root,root) %{_libdir}/lib*.la
103 %{_includedir}/*
104
105 %files static
106 %defattr(644,root,root,755)
107 %{_libdir}/lib*.a
This page took 0.098616 seconds and 3 git commands to generate.