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 Intel’s 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
7Summary: MIX Audio
8Name: mixaudio
9Version: 0.3.5
10Release: 1
11Source0: %{name}-%{version}.tar.gz
12NoSource: 0
13License: Intel Proprietary
14Group: System Environment/Libraries
15BuildRoot: %{_tmppath}/%{name}-root
16ExclusiveArch: i586 i386
17BuildRequires: glib2-devel mixcommon-devel dbus-glib-devel
18
19%description
20MIX Audio is an user library interface for various hardware audio codecs
21available on the platform.
22
23%package devel
24Summary: Libraries include files
25Group: Development/Libraries
26Requires: %{name} = %{version}
27
28%description devel
29The %{name}-devel package contains the header files and static libraries
30for building applications which use %{name}.
31
32%prep
33%setup -q
34
35%build
36%autogen
37%configure --prefix=%{_prefix}
38make
39
40%install
41%make_install
42
43%clean
44rm -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