]> git.pld-linux.org Git - packages/a52dec.git/blame_incremental - a52dec.spec
- -libs Group: Libraries
[packages/a52dec.git] / a52dec.spec
... / ...
CommitLineData
1%define subver 20040611
2%define rel 4
3Summary: A library for handling encrypted DVDs
4Summary(pl.UTF-8): Biblioteka do obsługi zakodowanych DVD
5Name: a52dec
6Version: 0.7.5
7Release: 0.%{subver}.%{rel}
8License: GPL
9Group: X11/Applications/Multimedia
10Source0: http://liba52.sourceforge.net/files/%{name}-snapshot.tar.gz
11# Source0-md5: 1729c7507f76b0d4cc04540926c5d0d7
12Patch0: %{name}-opt.patch
13Patch1: %{name}-pic.patch
14URL: http://liba52.sourceforge.net/
15BuildRequires: autoconf
16BuildRequires: automake
17BuildRequires: libtool
18Requires: %{name}-libs = %{version}-%{release}
19BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
20
21%description
22liba52 is a free library for decoding ATSC A/52 streams. It is
23released under the terms of the GPL license. The A/52 standard is used
24in a variety of applications, including digital television and DVD. It
25is also known as AC-3.
26
27This package contains a52dec utilities.
28
29%description -l pl.UTF-8
30liba52 jest wolnodostępną (na licencji GPL) biblioteką do dekodowania
31strumieni ATSC A/52. Standard A/52 jest używany w wielu
32zastosowaniach, w tym cyfrowej telewizji i DVD. Jest znany także jako
33AC-3.
34
35Ten pakiet zawiera narzędzia a52dec.
36
37%package libs
38Summary: a52dec library for handling encrypted DVDs
39Summary(pl.UTF-8): Biblioteka a52dec - do obsługi zakodowanych DVD
40Group: Libraries
41
42%description libs
43liba52 is a free library for decoding ATSC A/52 streams. It is
44released under the terms of the GPL license. The A/52 standard is used
45in a variety of applications, including digital television and DVD. It
46is also known as AC-3.
47
48%description libs -l pl.UTF-8
49liba52 jest wolnodostępną (na licencji GPL) biblioteką do dekodowania
50strumieni ATSC A/52. Standard A/52 jest używany w wielu
51zastosowaniach, w tym cyfrowej telewizji i DVD. Jest znany także jako
52AC-3.
53
54%package libs-devel
55Summary: Header files for a52dec library
56Summary(pl.UTF-8): Pliki nagłówkowe biblioteki a52dec
57Group: Development/Libraries
58Requires: %{name}-libs = %{version}-%{release}
59
60%description libs-devel
61Header files for development using a52dec library.
62
63%description libs-devel -l pl.UTF-8
64Pliki nagłówkowe do programowania z użyciem biblioteki a52dec.
65
66%package libs-static
67Summary: Static a52dec library
68Summary(pl.UTF-8): Statyczna biblioteka a52dec
69Group: Development/Libraries
70Requires: %{name}-libs-devel = %{version}-%{release}
71
72%description libs-static
73Static a52dec library.
74
75%description libs-static -l pl.UTF-8
76Statyczna biblioteka a52dec.
77
78%prep
79%setup -q -n %{name}-%{version}-cvs
80%patch0 -p1
81%patch1 -p1
82
83%build
84%{__libtoolize}
85%{__aclocal}
86%{__autoconf}
87%{__automake}
88%configure \
89 --enable-shared
90%{__make}
91
92%install
93rm -rf $RPM_BUILD_ROOT
94
95%{__make} install \
96 DESTDIR=$RPM_BUILD_ROOT
97
98%clean
99rm -rf $RPM_BUILD_ROOT
100
101%post libs -p /sbin/ldconfig
102%postun libs -p /sbin/ldconfig
103
104%files
105%defattr(644,root,root,755)
106%doc AUTHORS NEWS README TODO
107%attr(755,root,root) %{_bindir}/a52dec
108%attr(755,root,root) %{_bindir}/extract_a52
109%{_mandir}/man1/a52dec.1*
110%{_mandir}/man1/extract_a52.1*
111
112%files libs
113%defattr(644,root,root,755)
114%attr(755,root,root) %{_libdir}/liba52.so.*.*.*
115%ghost %{_libdir}/liba52.so.0
116
117%files libs-devel
118%defattr(644,root,root,755)
119%{_libdir}/liba52.so
120%{_libdir}/liba52.la
121%{_includedir}/a52dec
122%{_pkgconfigdir}/liba52.pc
123
124%files libs-static
125%defattr(644,root,root,755)
126%{_libdir}/liba52.a
This page took 0.031473 seconds and 4 git commands to generate.