]> git.pld-linux.org Git - packages/a52dec.git/blob - a52dec.spec
- removed two lines with define
[packages/a52dec.git] / a52dec.spec
1 Summary:        A library for handling encrypted dvds
2 Summary(pl):    Biblioteka do obs³ugi zakodowanych DVD
3 Name:           a52dec
4 Version:        0.7.4
5 Release:        1
6 License:        GPL
7 Group:          X11/Applications/Multimedia
8 Source0:        http://liba52.sourceforge.net/files/%{name}-%{version}.tar.gz
9 URL:            http://liba52.sourceforge.net/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  libtool
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %define         _libdir         /usr/lib
16 %define         _includedir     /usr/include
17
18 %description
19 liba52 is a free library for decoding ATSC A/52 streams. It is
20 released under the terms of the GPL license. The A/52 standard is used
21 in a variety of applications, including digital television and DVD. It
22 is also known as AC-3.
23
24 %description -l pl
25 liba52 jest wolnodostêpn± (na licencji GPL) bibliotek± do dekodowania
26 strumieni ATSC A/52. Standard A/52 jest u¿ywany w wielu
27 zastosowaniach, w tym cyfrowej telewizji i DVD. Jest znany tak¿e jako
28 AC-3.
29
30 %package libs
31 Summary:        Biblioteki a52dec
32 Summary(pl):    Pakiet z bibliotekami a52dec
33 Group:          Development/Libraries
34
35 %description libs
36 %{name}-devel includes development files for %{name}.
37
38 %description libs -l pl
39 Pliki dla programistów a52dec.
40
41 %package libs-devel
42 Summary:        %{name} development package
43 Summary(pl):    Pakiet %{name} dla programistów
44 Group:          Development/Libraries
45 Requires:       %{name}-libs = %{version}-%{release}
46
47 %description libs-devel
48 %{name}-devel includes development files for %{name}.
49
50 %description libs-devel -l pl
51 Pliki dla programistów a52dec.
52
53 %package libs-static
54 Summary:        Biblioteki a52dec
55 Summary(pl):    Pakiet z bibliotekami a52dec
56 Group:          Development/Libraries
57
58 %description libs-static
59 %{name}-devel includes development files for %{name}.
60
61 %description libs-static -l pl
62 Pliki dla programistów a52dec.
63
64 %prep
65 %setup -q
66
67 %build
68 rm -f missing
69 %{__libtoolize}
70 %{__aclocal}
71 %{__autoconf}
72 %{__automake}
73 %configure \
74         --enable-shared
75 %{__make}
76
77 %install
78 rm -rf $RPM_BUILD_ROOT
79 %{__make} install DESTDIR=$RPM_BUILD_ROOT
80
81 %clean
82 rm -rf $RPM_BUILD_ROOT
83
84 %post   -p /sbin/ldconfig
85 %postun -p /sbin/ldconfig
86
87 %files
88 %defattr(644,root,root,755)
89 %doc AUTHORS NEWS README TODO
90 %attr(755,root,root) %{_bindir}/*
91 %{_mandir}/man?/*
92
93 %files libs
94 %defattr(644,root,root,755)
95 %attr(755,root,root) %{_libdir}/*.so.*
96
97 %files libs-devel
98 %defattr(644,root,root,755)
99 %{_libdir}/*.la
100 %attr(755,root,root) %{_libdir}/*.so
101 %{_includedir}/*
102
103 %files libs-static
104 %defattr(644,root,root,755)
105 %{_libdir}/*.a
This page took 0.085529 seconds and 3 git commands to generate.