--- liblscp/trunk/liblscp.spec.in 2006/11/28 15:31:20 948 +++ liblscp/trunk/liblscp.spec.in 2009/08/01 17:57:37 1968 @@ -1,7 +1,7 @@ %define name @PACKAGE@ %define version @VERSION@ -%define release 11 +%define release 17 %define prefix @prefix@ Summary: LinuxSampler control protocol API. @@ -13,7 +13,7 @@ Group: Sound Source0: %{name}-%{version}.tar.gz URL: http://www.linuxsampler.org/ -BuildRoot: /var/tmp/%{name}-%{version}-buildroot +BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(id -u -n) %description LinuxSampler control protocol API. @@ -32,13 +32,12 @@ if [ -f Makefile.cvs ]; then make -f Makefile.cvs; fi %build -./configure --prefix=%{prefix} +%configure make %install -if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi -mkdir -p $RPM_BUILD_ROOT -make prefix=$RPM_BUILD_ROOT%{prefix} install +%{__rm} -rf %{buildroot} +%makeinstall %post /sbin/ldconfig @@ -47,23 +46,55 @@ /sbin/ldconfig %clean -if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi +%{__rm} -rf %{buildroot} %files %defattr(-,root,root) %doc AUTHORS COPYING ChangeLog NEWS README TODO -%{prefix}/lib/liblscp.so* +%{_libdir}/liblscp.so* %files devel %defattr(-,root,root) %doc doc/html/* -%{prefix}/lib/liblscp.a -%{prefix}/lib/liblscp.la -%{prefix}/lib/pkgconfig/lscp.pc -%{prefix}/include/lscp +%{_libdir}/liblscp.a +%{_libdir}/liblscp.la +%{_libdir}/pkgconfig/lscp.pc +%dir %{_includedir}/lscp +%{_includedir}/lscp/*.h %changelog -* The Nov 28 2006 Rui Nuno Capela +* Sat Aug 1 2009 Rui Nuno Capela +- New 0.5.6 release. + +* Fri Oct 12 2007 Rui Nuno Capela +- Changed client interface function, for editing channel instrument. +- New 0.5.5 release. + +* Tue Oct 2 2007 Rui Nuno Capela +- Added new client interface function, for editing instrument. +- New 0.5.4 release. + +* Mon Jan 15 2007 Rui Nuno Capela +- New 0.5.3 release. + +* Thu Jan 11 2007 Rui Nuno Capela +- Sampler channel effect sends control and global volume support. +- Audio routing representation changed to integer array. +- New 0.5.2 release. + +* Fri Dec 22 2006 Rui Nuno Capela +- Added support for new (un)subscribable events. +- Examples update. +- Prepared for 0.5.1 maintenance release. + +* Sun Dec 17 2006 Rui Nuno Capela +- Multi MIDI instrument maps introduced, sampler channel assignable. +- Moved on up to a brand new 0.5.0 release. + +* Mon Dec 4 2006 Rui Nuno Capela +- Going up to 0.4.2 fast. + +* Tue Nov 28 2006 Rui Nuno Capela - Bumped directly to 0.4.1 release. - Getting ready for the new MIDI instrument mapping features.