1Summary: MIX Common 2Name: mixcommon 3Version: 0.1.7 4Release: 1 5Source0: %{name}-%{version}.tar.gz 6NoSource: 0 7License: Proprietary 8Group: System Environment/Libraries 9BuildRoot: %{_tmppath}/%{name}-root 10ExclusiveArch: i586 11 12%description 13MIX Common contains common classes, datatype, header files used by other MIX components 14 15%package devel 16Summary: Libraries include files 17Group: Development/Libraries 18Requires: %{name} = %{version} 19 20%description devel 21The %{name}-devel package contains the header files and static libraries for building applications which use %{name}. 22 23%prep 24%setup -q 25%build 26./autogen.sh 27./configure --prefix=%{_prefix} 28make 29%install 30rm -rf $RPM_BUILD_ROOT 31make DESTDIR=$RPM_BUILD_ROOT install 32%clean 33rm -rf $RPM_BUILD_ROOT 34%files 35%defattr(-,root,root) 36%{_prefix}/lib/*.so* 37 38%files devel 39%defattr(-,root,root) 40%{_prefix}/include 41%{_prefix}/lib/*.la 42%{_prefix}/lib/pkgconfig/mixcommon.pc 43%doc COPYING 44