]> git.pld-linux.org Git - packages/faac.git/blob - faac.spec
- updated to 1.23.5, added descriptions and link patch
[packages/faac.git] / faac.spec
1 Summary:        Freeware Advanced Audio Codec
2 Summary(pl):    Freeware Advanced Audio Codec - darmowy zaawansowany kodek d¼wiêku
3 Name:           faac
4 Version:        1.23.5
5 Release:        1
6 License:        LGPL v2.1+
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/faac/%{name}-%{version}.tar.gz
9 # Source0-md5:  ef74cf6049df76fa2a99c65d1b565ad3
10 Patch0:         %{name}-link.patch
11 URL:            http://www.audiocoding.com/
12 BuildRequires:  autoconf >= 2.50
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 FAAC is an ISO/MPEG 2/4 AAC encoder library developed for the Freeware
19 Advanced Audio Coding project.
20
21 %description -l pl
22 FAAC to biblioteka kodera ISO/MPEG 2/4 AAC stworzona dla projektu
23 Freeware Advanced Audio Coding (darmowego zaawansowanego kodowania
24 d¼wiêku).
25
26 %package devel
27 Summary:        Header files for faac library
28 Summary(pl):    Pliki nag³ówkowe biblioteki faac
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}
31
32 %description devel
33 Header files for faac library.
34
35 %description devel -l pl
36 Pliki nag³ówkowe biblioteki faac.
37
38 %package static
39 Summary:        Static faac library
40 Summary(pl):    Statyczna biblioteka faac
41 Group:          Development/Libraries
42 Requires:       %{name}-devel = %{version}
43
44 %description static
45 Static faac library.
46
47 %description static -l pl
48 Statyczna biblioteka faac.
49
50 %prep
51 %setup -q -n %{name}
52 %patch0 -p1
53
54 %build
55 %{__libtoolize}
56 %{__aclocal}
57 %{__autoconf}
58 %{__autoheader}
59 %{__automake}
60 %configure
61 %{__make}
62
63 %install
64 rm -rf $RPM_BUILD_ROOT
65
66 %{__make} install \
67         DESTDIR=$RPM_BUILD_ROOT
68
69 %clean
70 rm -rf $RPM_BUILD_ROOT
71
72 %post   -p /sbin/ldconfig
73 %postun -p /sbin/ldconfig
74
75 %files
76 %defattr(644,root,root,755)
77 %doc ChangeLog README TODO docs/faac.html
78 %attr(755,root,root) %{_bindir}/*
79 %attr(755,root,root) %{_libdir}/lib*.so.*.*
80
81 %files devel
82 %defattr(644,root,root,755)
83 %doc docs/libfaac.html
84 %attr(755,root,root) %{_libdir}/lib*.so
85 %{_libdir}/lib*.la
86 %{_includedir}/*.h
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/lib*.a
This page took 0.062398 seconds and 4 git commands to generate.