rebuilt with debug package and update build requirements [release 1.2.2-2mamba;Sat Dec 12 2020]
This commit is contained in:
parent
009fa49d20
commit
e62530070e
23
README.md
23
README.md
@ -1,16 +1,13 @@
|
|||||||
# libao
|
# libao
|
||||||
|
|
||||||
Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms.
|
Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms. It currently supports:
|
||||||
It currently supports:
|
* Null output
|
||||||
* Null output (handy for testing without a sound device)
|
* WAV files
|
||||||
* WAV files
|
* OSS (Open Sound System)
|
||||||
* AU files
|
* ESD (ESounD or Enlightened Sound Daemon)
|
||||||
* OSS (Open Sound System, used on Linux and FreeBSD
|
* ALSA (Advanced Linux Sound Architecture)
|
||||||
* ALSA (Advanced Linux Sound Architecture)
|
* PulseAudio (next generation GNOME sound server)
|
||||||
* polypaudio (next generation GNOME sound server)
|
* AIX
|
||||||
* esd (EsounD or Enlightened Sound Daemon)
|
* Solaris (untested)
|
||||||
* AIX
|
* IRIX (untested)
|
||||||
* Sun/NetBSD/OpenBSD
|
|
||||||
* IRIX
|
|
||||||
* NAS (Network Audio Server
|
|
||||||
|
|
||||||
|
53
libao.spec
53
libao.spec
@ -1,21 +1,20 @@
|
|||||||
Name: libao
|
Name: libao
|
||||||
Version: 1.2.2
|
Version: 1.2.2
|
||||||
Release: 1mamba
|
Release: 2mamba
|
||||||
Summary: A cross platform audio library
|
Summary: A cross platform audio library
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Aleph0 <aleph0@openmamba.org>
|
Packager: Aleph0 <aleph0@openmamba.org>
|
||||||
URL: http://www.xiph.org/ao/
|
URL: https://xiph.org/ao/
|
||||||
Source: https://git.xiph.org/libao.git/%{version}/libao-%{version}.tar.bz2
|
Source: https://git.xiph.org/libao.git/%{version}/libao-%{version}.tar.bz2
|
||||||
License: GPL
|
License: GPL
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
|
BuildRequires: ldconfig
|
||||||
BuildRequires: libalsa-devel
|
BuildRequires: libalsa-devel
|
||||||
BuildRequires: libaudio-devel
|
BuildRequires: libpulseaudio-devel
|
||||||
BuildRequires: libXau-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: libpulseaudio-devel >= 9.0-1mamba
|
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
@ -26,19 +25,16 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|||||||
# checking for polyplib-simple >= 0.6 -- see http://pulseaudio.org/
|
# checking for polyplib-simple >= 0.6 -- see http://pulseaudio.org/
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms.
|
Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms. It currently supports:
|
||||||
It currently supports:
|
* Null output
|
||||||
* Null output (handy for testing without a sound device)
|
* WAV files
|
||||||
* WAV files
|
* OSS (Open Sound System)
|
||||||
* AU files
|
* ESD (ESounD or Enlightened Sound Daemon)
|
||||||
* OSS (Open Sound System, used on Linux and FreeBSD
|
* ALSA (Advanced Linux Sound Architecture)
|
||||||
* ALSA (Advanced Linux Sound Architecture)
|
* PulseAudio (next generation GNOME sound server)
|
||||||
* polypaudio (next generation GNOME sound server)
|
* AIX
|
||||||
* esd (EsounD or Enlightened Sound Daemon)
|
* Solaris (untested)
|
||||||
* AIX
|
* IRIX (untested)
|
||||||
* Sun/NetBSD/OpenBSD
|
|
||||||
* IRIX
|
|
||||||
* NAS (Network Audio Server
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Devel package for libao
|
Summary: Devel package for libao
|
||||||
@ -46,27 +42,15 @@ Group: Development/Libraries
|
|||||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Libao is a cross-platform audio library that allows programs to output audio using a simple API on a wide variety of platforms.
|
This package contains static libraries and header files needed for development.
|
||||||
It currently supports:
|
|
||||||
* Null output (handy for testing without a sound device)
|
|
||||||
* WAV files
|
|
||||||
* AU files
|
|
||||||
* OSS (Open Sound System, used on Linux and FreeBSD
|
|
||||||
* ALSA (Advanced Linux Sound Architecture)
|
|
||||||
* polypaudio (next generation GNOME sound server)
|
|
||||||
* esd (EsounD or Enlightened Sound Daemon)
|
|
||||||
* AIX
|
|
||||||
* Sun/NetBSD/OpenBSD
|
|
||||||
* IRIX
|
|
||||||
* NAS (Network Audio Server
|
|
||||||
|
|
||||||
This package contains static libraries and header files need for development.
|
%debug_package
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
autoreconf -f -i
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -f -i
|
|
||||||
## libao does not support alsa library 1.0
|
## libao does not support alsa library 1.0
|
||||||
#CPPFLAGS="-DALSA_PCM_OLD_HW_PARAMS_API" \
|
#CPPFLAGS="-DALSA_PCM_OLD_HW_PARAMS_API" \
|
||||||
%configure \
|
%configure \
|
||||||
@ -107,6 +91,9 @@ autoreconf -f -i
|
|||||||
%{_datadir}/doc/libao-%{version}/*
|
%{_datadir}/doc/libao-%{version}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Dec 12 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.2-2mamba
|
||||||
|
- rebuilt with debug package and update build requirements
|
||||||
|
|
||||||
* Sat Mar 24 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.2-1mamba
|
* Sat Mar 24 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.2-1mamba
|
||||||
- update to 1.2.2
|
- update to 1.2.2
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user