]> git.pld-linux.org Git - packages/zvbi.git/blob - zvbi.spec
- updated to version 0.2.4
[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.4
5 Release:        1
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://unc.dl.sourceforge.net/sourceforge/zapping/%{name}-%{version}.tar.bz2
9 URL:            http://zapping.sourceforge.net/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  libtool
13 BuildRequires:  libunicode-devel
14 BuildRequires:  doxygen
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 danych 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
69 #Throw away AM_ACLOCAL_INCLUDE with breaks aclocal regeneration
70 sed -e 's/AM_ACLOCAL_INCLUDE(m4)//g' configure.in > configure.in.new;
71 mv configure.in.new configure.in  
72
73 %build
74 rm -f missing
75 %{__libtoolize}
76 %{__aclocal}
77 %{__autoconf}
78 %{__automake}
79 %configure
80 %{__make}
81
82 %install
83 rm -rf $RPM_BUILD_ROOT
84
85 %{__make} install \
86         DESTDIR=$RPM_BUILD_ROOT
87
88 %find_lang %{name}
89
90 %post   -p /sbin/ldconfig
91 %postun -p /sbin/ldconfig
92
93 %clean
94 rm -rf $RPM_BUILD_ROOT
95
96 %files -f %{name}.lang
97 %defattr(644,root,root,755)
98 %doc AUTHORS BUGS NEWS README TODO
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
108 %files static
109 %defattr(644,root,root,755)
110 %{_libdir}/lib*.a
This page took 0.094706 seconds and 4 git commands to generate.