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