]> git.pld-linux.org Git - packages/bcg729.git/blame - bcg729.spec
- updated to 1.1.1, mediastreamer plugin no longer included here
[packages/bcg729.git] / bcg729.spec
CommitLineData
a4520443
JB
1#
2# Conditional build:
9808087f 3%bcond_without static_libs # static library
a4520443 4
0d00f4af
JB
5Summary: ITU G729 Annex A speech codec library
6Summary(pl.UTF-8): Biblioteka kodeka mowy ITU G729 Annex A
7Name: bcg729
9808087f
JB
8Version: 1.1.1
9Release: 1
10License: GPL v3+
0d00f4af 11Group: Libraries
9808087f
JB
12#Source0Download: https://gitlab.linphone.org/BC/public/bcg729/tags
13Source0: https://gitlab.linphone.org/BC/public/bcg729/-/archive/%{version}/%{name}-%{version}.tar.bz2
14# Source0-md5: 23b0c28422df3251adbc81e596ef9861
15URL: http://www.linphone.org/technical-corner/bcg729
87915a50
JB
16BuildRequires: autoconf >= 2.63
17BuildRequires: automake
18BuildRequires: libtool >= 2:2
0d00f4af
JB
19BuildRequires: pkgconfig
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23bcg729 is an opensource implementation of both encoder and decoder of
24the ITU G729 Annex A speech codec. The library written in C99 is fully
25portable and can be executed on many platforms including both ARM
26processor and x86. libbcg729 supports concurrent channels
27encoding/decoding for multi call application such conferencing. This
28project was initially developed as part of Mediastreamer2, the
29Linphone's media processing engine. So there is also available the
30glue to be integrated in Linphone/Mediastreamer2.
31
32%description -l pl.UTF-8
33bcg729 to implementacja o otwartych źródłach kodera oraz dekorera
34kodeka mowy ITU G729 Annex A. Biblioteka napisana w dialekcie C99 jest
35w pełni przenośna i może być uruchamiana na wielu platformach, w tym
36procesorach ARM i x86. libbcg729 obsługuje jednoczesne
37kodowanie/dekodowanie wielu kanałów dla zastosowań z wieloma
38rozmowami,takich jak konferencje. Ten projekt początkowo był częścią
39Mediastreamera2 - silnika przetwarzania multimediów programu Linphone.
40Dlatego jest też dostępny kod łączący z Linphonem/Mediastreamerem2.
41
42%package devel
43Summary: Header files for bcg729 library
44Summary(pl.UTF-8): Pliki nagłówkowe biblioteki bcg729
45Group: Development/Libraries
46Requires: %{name} = %{version}-%{release}
47
48%description devel
49Header files for bcg729 library.
50
51%description devel -l pl.UTF-8
52Pliki nagłówkowe biblioteki bcg729.
53
54%package static
55Summary: Static bcg729 library
56Summary(pl.UTF-8): Statyczna biblioteka bcg729
57Group: Development/Libraries
58Requires: %{name}-devel = %{version}-%{release}
59
60%description static
61Static bcg729 library.
62
63%description static -l pl.UTF-8
64Statyczna biblioteka bcg729.
65
0d00f4af
JB
66%prep
67%setup -q
9808087f
JB
68
69# required by configure
70touch bcg729.spec.in
0d00f4af
JB
71
72%build
87915a50
JB
73%{__libtoolize}
74%{__aclocal} -I m4
75%{__autoconf}
76%{__autoheader}
77%{__automake}
0d00f4af 78%configure \
9808087f
JB
79 --disable-silent-rules \
80 %{!?with_static_libs:--disable-static}
0d00f4af
JB
81
82%{__make}
83
84%install
85rm -rf $RPM_BUILD_ROOT
86
87%{__make} install \
88 DESTDIR=$RPM_BUILD_ROOT
89
0d00f4af
JB
90# obsoleted by pkg-config
91%{__rm} $RPM_BUILD_ROOT%{_libdir}/libbcg729.la
92
93%clean
94rm -rf $RPM_BUILD_ROOT
95
96%post -p /sbin/ldconfig
97%postun -p /sbin/ldconfig
98
99%files
100%defattr(644,root,root,755)
9808087f 101%doc AUTHORS.md CHANGELOG.md README.md
0d00f4af
JB
102%attr(755,root,root) %{_libdir}/libbcg729.so.*.*.*
103%attr(755,root,root) %ghost %{_libdir}/libbcg729.so.0
104
105%files devel
106%defattr(644,root,root,755)
107%attr(755,root,root) %{_libdir}/libbcg729.so
108%{_includedir}/bcg729
109%{_pkgconfigdir}/libbcg729.pc
110
9808087f 111%if %{with static_libs}
0d00f4af
JB
112%files static
113%defattr(644,root,root,755)
114%{_libdir}/libbcg729.a
a4520443 115%endif
This page took 1.163782 seconds and 4 git commands to generate.