initial import
This commit is contained in:
parent
25c0927ced
commit
9d7170d154
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
|||||||
|
/sbc-*.tar.gz
|
58
sbc.spec
Normal file
58
sbc.spec
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
Name: sbc
|
||||||
|
Version: 1.0
|
||||||
|
Release: 1%{?dist}
|
||||||
|
Summary: Sub Band Codec used by bluetooth A2DP
|
||||||
|
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
License: GPLv2 and LGPLv2+
|
||||||
|
URL: http://www.bluez.org
|
||||||
|
Source0: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: libsndfile-devel
|
||||||
|
|
||||||
|
%description
|
||||||
|
SBC (Sub Band Codec) is a low-complexity audio codec used in the Advanced Audio
|
||||||
|
Distribution Profile (A2DP) bluetooth standard but can be used standalone. It
|
||||||
|
uses 4 or 8 subbands, an adaptive bit allocation algorithm in combination with
|
||||||
|
an adaptive block PCM quantizers.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development package for %{name}
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: pkgconfig
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
Files for development with %{name}.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure --disable-static
|
||||||
|
|
||||||
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
|
%install
|
||||||
|
make install DESTDIR=%{buildroot} INSTALL='install -p'
|
||||||
|
|
||||||
|
#Remove libtool archives.
|
||||||
|
find %{buildroot} -name '*.la' -exec rm -f {} ';'
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%doc COPYING AUTHORS ChangeLog
|
||||||
|
%{_bindir}/sbc*
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%{_includedir}/sbc
|
||||||
|
%{_libdir}/pkgconfig/sbc.pc
|
||||||
|
%{_libdir}/*.so
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Sat Dec 1 2012 Peter Robinson <pbrobinson@fedoraproject.org> 1.0-1
|
||||||
|
- Initial package
|
Loading…
Reference in New Issue
Block a user