libsndfile.spec
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. %define name    libsndfile
  2. %define version 0.0.22
  3. %define release 1
  4. %define prefix  /usr
  5. Summary: A library to handle various audio file formats.
  6. Name: %{name}
  7. Version: %{version}
  8. Release: %{release}
  9. Prefix: %{prefix}
  10. Copyright: LGPL
  11. Group: Libraries/Sound
  12. Source: http://www.zip.com.au/~erikd/libsndfile/libsndfile-%{version}.tar.gz
  13. URL: http://www.zip.com.au/~erikd/libsndfile/
  14. BuildRoot: /var/tmp/%{name}-%{version}
  15. %description
  16. libsndfile is a C library for reading and writing sound files such as
  17. AIFF, AU and WAV files through one standard interface. It can currently
  18. read/write 8, 16, 24 and 32-bit PCM files as well as 32-bit floating
  19. point WAV files and a number of compressed formats.
  20. %package devel
  21. Summary: Libraries, includes, etc to develop libsndfile applications
  22. Group: Libraries
  23. %description devel
  24. Libraries, include files, etc you can use to develop libsndfile applications.
  25. %prep
  26. %setup
  27. %build
  28. ./configure --prefix=%{prefix}
  29. make
  30. %install
  31. if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
  32. mkdir -p $RPM_BUILD_ROOT
  33. make prefix=$RPM_BUILD_ROOT%{prefix} install
  34. %clean
  35. if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
  36. %files
  37. %defattr(-,root,root)
  38. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO doc
  39. %prefix/lib/libsndfile.so.*
  40. %files devel
  41. %defattr(-,root,root)
  42. %{prefix}/lib/libsndfile.a
  43. %{prefix}/lib/libsndfile.la
  44. %{prefix}/lib/libsndfile.so
  45. %{prefix}/include/sndfile.h
  46. %changelog
  47. * Thu Jul 6 2000 Josh Green <jgreen@users.sourceforge.net>
  48. - Created libsndfile.spec.in