forked from pool/speex
This commit is contained in:
parent
efd1e02ed7
commit
d5464ff8ef
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:72fdf5711cf2a1153ce1066428bbe0f95aa8de47f47c35af574c478209cd761f
|
|
||||||
size 814908
|
|
3
speex-1.2beta2.tar.bz2
Normal file
3
speex-1.2beta2.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:218376a0b3d2ae6e0ad94dc96e5f27d4d3c3bc7ae58db62feed5a988b7657b31
|
||||||
|
size 881671
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 24 14:38:03 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
- updated to version 1.2beta2:
|
||||||
|
* reduced RAM requirement
|
||||||
|
* A new resampler module
|
||||||
|
* improved / fixed echo canceller
|
||||||
|
* improved preprocessor
|
||||||
|
* early TriMedia support (incomplete)
|
||||||
|
- removed static library and *.la files
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 10 19:25:21 CEST 2007 - tiwai@suse.de
|
Tue Apr 10 19:25:21 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
28
speex.spec
28
speex.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package speex (Version 1.1.99.1)
|
# spec file for package speex (Version 1.1.99.2)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -11,11 +11,11 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: speex
|
Name: speex
|
||||||
%define package_version 1.2beta1
|
%define package_version 1.2beta2
|
||||||
BuildRequires: libogg-devel pkgconfig
|
BuildRequires: libogg-devel pkgconfig
|
||||||
Summary: An Open Source, Patent Free Speech Codec
|
Summary: An Open Source, Patent Free Speech Codec
|
||||||
Version: 1.1.99.1
|
Version: 1.1.99.2
|
||||||
Release: 25
|
Release: 1
|
||||||
License: BSD License and BSD-like
|
License: BSD License and BSD-like
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
URL: http://www.speex.org/
|
URL: http://www.speex.org/
|
||||||
@ -84,7 +84,7 @@ Authors:
|
|||||||
Radim Kolar <hsn@cybermail.net>
|
Radim Kolar <hsn@cybermail.net>
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n %{name}-%{package_version}
|
%setup -q -n %{name}-%{package_version}
|
||||||
%patch1
|
%patch1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -92,12 +92,16 @@ Authors:
|
|||||||
autoreconf --force --install
|
autoreconf --force --install
|
||||||
CFLAGS="$RPM_OPT_FLAGS -DRELEASE" \
|
CFLAGS="$RPM_OPT_FLAGS -DRELEASE" \
|
||||||
./configure --prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} \
|
./configure --prefix=%{_prefix} --libdir=%{_libdir} --mandir=%{_mandir} \
|
||||||
|
--disable-static \
|
||||||
--with-ogg-libraries=%{_libdir}
|
--with-ogg-libraries=%{_libdir}
|
||||||
make
|
make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
rm -rf $RPM_BUILD_ROOT/usr/share/doc/speex-*
|
# remove duped documents
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/speex-*
|
||||||
|
# remove unneeded *.la files
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
|
||||||
%post -n libspeex
|
%post -n libspeex
|
||||||
%run_ldconfig
|
%run_ldconfig
|
||||||
@ -119,17 +123,23 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README.TI-DSP README.blackfin README.symbian doc/manual.pdf
|
%doc README.TI-DSP README.blackfin README.symbian
|
||||||
%doc %{_mandir}/man?/*
|
%doc %{_mandir}/man?/*
|
||||||
%doc doc/manual.pdf
|
%doc doc/manual.pdf
|
||||||
%{_includedir}/*
|
%{_includedir}/*
|
||||||
%{_libdir}/libspeex.a
|
|
||||||
%{_libdir}/libspeex.la
|
|
||||||
%{_libdir}/libspeex.so
|
%{_libdir}/libspeex.so
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_datadir}/aclocal/*.m4
|
%{_datadir}/aclocal/*.m4
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 24 2007 - tiwai@suse.de
|
||||||
|
- updated to version 1.2beta2:
|
||||||
|
* reduced RAM requirement
|
||||||
|
* A new resampler module
|
||||||
|
* improved / fixed echo canceller
|
||||||
|
* improved preprocessor
|
||||||
|
* early TriMedia support (incomplete)
|
||||||
|
- removed static library and *.la files
|
||||||
* Tue Apr 10 2007 - tiwai@suse.de
|
* Tue Apr 10 2007 - tiwai@suse.de
|
||||||
- split shared library to libspeex sub package.
|
- split shared library to libspeex sub package.
|
||||||
* Thu Oct 12 2006 - tiwai@suse.de
|
* Thu Oct 12 2006 - tiwai@suse.de
|
||||||
|
Loading…
x
Reference in New Issue
Block a user