Home | History | Annotate | Download | only in mix_audio
      1 # INTEL CONFIDENTIAL
      2 # Copyright 2009 Intel Corporation All Rights Reserved. 
      3 # The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intels prior express written permission.
      4 #
      5 # No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing.
      6 
      7 Summary: MIX Audio
      8 Name: mixaudio
      9 Version: 0.3.5
     10 Release: 1
     11 Source0: %{name}-%{version}.tar.gz
     12 NoSource: 0
     13 License: Intel Proprietary
     14 Group: System Environment/Libraries
     15 BuildRoot: %{_tmppath}/%{name}-root
     16 ExclusiveArch: i586 i386
     17 BuildRequires: glib2-devel mixcommon-devel dbus-glib-devel
     18 
     19 %description
     20 MIX Audio is an user library interface for various hardware audio codecs
     21 available on the platform.
     22 
     23 %package devel
     24 Summary: Libraries include files
     25 Group: Development/Libraries
     26 Requires: %{name} = %{version}
     27 
     28 %description devel
     29 The %{name}-devel package contains the header files and static libraries
     30 for building applications which use %{name}.
     31 
     32 %prep
     33 %setup -q
     34 
     35 %build
     36 %autogen
     37 %configure --prefix=%{_prefix}
     38 make
     39 
     40 %install
     41 %make_install
     42 
     43 %clean
     44 rm -rf $RPM_BUILD_ROOT
     45 
     46 %files
     47 %defattr(-,root,root)
     48 %{_libdir}/libmixaudio.so.*
     49 
     50 %files devel
     51 %defattr(-,root,root)
     52 %{_libdir}/libmixaudio.so
     53 %{_libdir}/libmixaudio.la
     54 %{_libdir}/pkgconfig/mixaudio.pc
     55 %{_includedir}/*.h
     56 %doc COPYING
     57