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