automatic version update by autodist [release 0.3.6-1mamba;Fri Mar 08 2013]
This commit is contained in:
parent
c6d7c84175
commit
e2dca5c4ea
@ -1,2 +1,9 @@
|
|||||||
# libaudiofile
|
# libaudiofile
|
||||||
|
|
||||||
|
The Silicon Graphics Audio File Library provides a uniform programming interface to standard digital audio file formats.
|
||||||
|
Currently supported sound file formats include AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, and Berkeley/IRCAM/CARL.
|
||||||
|
Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
|
||||||
|
Key goals of the Audio File Library are file format transparency and data format transparency.
|
||||||
|
The same calls for opening a file, accessing and manipulating audio metadata (e.g., sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format.
|
||||||
|
Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
|
||||||
|
|
||||||
|
11
libaudiofile-0.2.6-m4_underquoted_warning.patch
Normal file
11
libaudiofile-0.2.6-m4_underquoted_warning.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
--- audiofile-0.2.6/audiofile.m4 2004-03-06 07:39:23.000000000 +0100
|
||||||
|
+++ audiofile-0.2.6/audiofile.m4.fix 2006-06-07 09:49:47.000000000 +0200
|
||||||
|
@@ -9,7 +9,7 @@
|
||||||
|
dnl AM_PATH_AUDIOFILE([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
|
||||||
|
dnl Test for Audio File Library, and define AUDIOFILE_CFLAGS and AUDIOFILE_LIBS.
|
||||||
|
dnl
|
||||||
|
-AC_DEFUN(AM_PATH_AUDIOFILE,
|
||||||
|
+AC_DEFUN([AM_PATH_AUDIOFILE],
|
||||||
|
[dnl
|
||||||
|
dnl Get compiler flags and libraries from the audiofile-config script.
|
||||||
|
dnl
|
110
libaudiofile.spec
Normal file
110
libaudiofile.spec
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
Name: libaudiofile
|
||||||
|
Version: 0.3.6
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: A uniform programming interface to standard digital audio file formats
|
||||||
|
Group: System/Kernel and Hardware
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: http://www.68k.org/~michael/audiofile
|
||||||
|
Source: http://www.68k.org/~michael/audiofile/audiofile-%{version}.tar.gz
|
||||||
|
Patch: %{name}-0.2.6-m4_underquoted_warning.patch
|
||||||
|
License: LGPL
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: glibc-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
The Silicon Graphics Audio File Library provides a uniform programming interface to standard digital audio file formats.
|
||||||
|
Currently supported sound file formats include AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, and Berkeley/IRCAM/CARL.
|
||||||
|
Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
|
||||||
|
Key goals of the Audio File Library are file format transparency and data format transparency.
|
||||||
|
The same calls for opening a file, accessing and manipulating audio metadata (e.g., sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format.
|
||||||
|
Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Devel package for libaudiofile
|
||||||
|
Group: Development/Libraries
|
||||||
|
Requires: %{name} = %{version}
|
||||||
|
|
||||||
|
%description devel
|
||||||
|
The Silicon Graphics Audio File Library provides a uniform programming interface to standard digital audio file formats.
|
||||||
|
Currently supported sound file formats include AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, and Berkeley/IRCAM/CARL.
|
||||||
|
Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
|
||||||
|
Key goals of the Audio File Library are file format transparency and data format transparency.
|
||||||
|
The same calls for opening a file, accessing and manipulating audio metadata (e.g., sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format.
|
||||||
|
Likewise, the format of the audio data presented to the application need not be tied to the format of the data contained in the file.
|
||||||
|
|
||||||
|
This package contains static libraries and header files need for development.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n audiofile-%{version}
|
||||||
|
#%patch -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%configure \
|
||||||
|
--with-kernel=/usr/src/linux-`uname -r`
|
||||||
|
%make
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%makeinstall
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
|
%post -p /sbin/ldconfig
|
||||||
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/*
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%{_mandir}/man1/*
|
||||||
|
%doc AUTHORS COPYING
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/*.a
|
||||||
|
%{_libdir}/*.la
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_includedir}/*.h
|
||||||
|
%{_libdir}/pkgconfig/*
|
||||||
|
%{_mandir}/man3/*
|
||||||
|
#%{_datadir}/aclocal/*
|
||||||
|
%doc ACKNOWLEDGEMENTS ChangeLog NEWS NOTES README TODO
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Mar 08 2013 Automatic Build System <autodist@mambasoft.it> 0.3.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Feb 06 2013 Automatic Build System <autodist@mambasoft.it> 0.3.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jun 16 2012 Automatic Build System <autodist@mambasoft.it> 0.3.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Oct 11 2011 Automatic Build System <autodist@mambasoft.it> 0.3.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Apr 01 2010 Automatic Build System <autodist@mambasoft.it> 0.2.7-1mamba
|
||||||
|
- automatic update by autodist
|
||||||
|
|
||||||
|
* Mon Jun 09 2008 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2.6-3mamba
|
||||||
|
- specfile updated
|
||||||
|
|
||||||
|
* Wed Jun 07 2006 Davide Madrisan <davide.madrisan@qilinux.it> 0.2.6-2qilnx
|
||||||
|
- fixed underquoted definition of AM_PATH_AUDIOFILE
|
||||||
|
|
||||||
|
* Mon Aug 29 2005 Davide Madrisan <davide.madrisan@qilinux.it> 0.2.6-1qilnx
|
||||||
|
- update to version 0.2.6 by autospec
|
||||||
|
|
||||||
|
* Wed Jun 01 2005 Davide Madrisan <davide.madrisan@qilinux.it> 0.2.3-3qilnx
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Mon Jul 19 2004 Davide Madrisan <davide.madrisan@qilinux.it> 0.2.3-2qilnx
|
||||||
|
- specfile updated
|
||||||
|
|
||||||
|
* Tue Jul 03 2003 Silvan Calarco <silvan.calarco@qinet.it> 0.2.3-1qilnx
|
||||||
|
- first build
|
Loading…
Reference in New Issue
Block a user