forked from pool/csound
This commit is contained in:
parent
c2b4d52344
commit
a8e8dd31e0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8078f446cf3c75b3839c23001660e231ea9602916af389aa7bc0aeb6f93af68b
|
|
||||||
size 18810841
|
|
3
Csound5.06.0.tar.bz2
Normal file
3
Csound5.06.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:85557740bfc321bfd553ba082b18055ce76fd7b2d9eccd706ffb60801f423c32
|
||||||
|
size 11105246
|
14
csound-gcc-warning-fix.diff
Normal file
14
csound-gcc-warning-fix.diff
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
--- Opcodes/gab/sliderTable.c-dist 2007-06-11 18:20:22.000000000 +0200
|
||||||
|
+++ Opcodes/gab/sliderTable.c 2007-06-11 18:29:35.000000000 +0200
|
||||||
|
@@ -364,9 +364,9 @@ static int sliderTable64(CSOUND *csound,
|
||||||
|
break; \
|
||||||
|
} \
|
||||||
|
*outTable++ = \
|
||||||
|
- *yt1++ = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
|
||||||
|
+ *yt1 = *c1++ * value + *c2++ * *yt1; /* filters the output */ \
|
||||||
|
\
|
||||||
|
- min++; max++; j++; ftp++; \
|
||||||
|
+ yt1++; min++; max++; j++; ftp++; \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
|
return OK;
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 11 17:57:22 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
- updated to version 5.06:
|
||||||
|
* fix k-rate, vrandh and vrandi scaling problems, mod fix
|
||||||
|
* new opcodes: partikkel, partikkelsync
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 27 18:08:43 CEST 2007 - tiwai@suse.de
|
Tue Mar 27 18:08:43 CEST 2007 - tiwai@suse.de
|
||||||
|
|
||||||
|
25
csound.spec
25
csound.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package csound (Version 5.05)
|
# spec file for package csound (Version 5.06.0)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,19 +12,20 @@
|
|||||||
|
|
||||||
Name: csound
|
Name: csound
|
||||||
%define support_fltk 0
|
%define support_fltk 0
|
||||||
BuildRequires: alsa-devel fluidsynth-devel gcc-c++ jack-devel liblo-devel libsndfile-devel portaudio-devel python-devel scons swig
|
BuildRequires: alsa-devel fdupes fluidsynth-devel gcc-c++ jack-devel liblo-devel libsndfile-devel portaudio-devel python-devel scons swig
|
||||||
%if %support_fltk
|
%if %support_fltk
|
||||||
BuildRequires: fltk-devel libjpeg-devel libpng-devel xorg-x11-devel
|
BuildRequires: fltk-devel libjpeg-devel libpng-devel xorg-x11-devel
|
||||||
%endif
|
%endif
|
||||||
Summary: Computer Sound Synthesis and Composition Program
|
Summary: Computer Sound Synthesis and Composition Program
|
||||||
Version: 5.05
|
Version: 5.06.0
|
||||||
Release: 1
|
Release: 1
|
||||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||||
Group: Productivity/Multimedia/Sound/Utilities
|
Group: Productivity/Multimedia/Sound/Utilities
|
||||||
Source: Csound%{version}_src.tar.bz2
|
Source: Csound%{version}.tar.bz2
|
||||||
Source1: README.SuSE
|
Source1: README.SuSE
|
||||||
Patch: csound-alsa-fix.diff
|
Patch: csound-alsa-fix.diff
|
||||||
Patch1: csound-tmpnam-fix.diff
|
Patch1: csound-tmpnam-fix.diff
|
||||||
|
Patch2: csound-gcc-warning-fix.diff
|
||||||
URL: http://www.csounds.com
|
URL: http://www.csounds.com
|
||||||
Autoreq: on
|
Autoreq: on
|
||||||
Autoprov: off
|
Autoprov: off
|
||||||
@ -39,13 +40,15 @@ For detailed information, refer to http://www.csounds.com.
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n Csound5.05.0
|
%setup -q -n Csound%{version}
|
||||||
%patch
|
%patch
|
||||||
%patch1
|
%patch1
|
||||||
|
%patch2
|
||||||
cp %{SOURCE1} .
|
cp %{SOURCE1} .
|
||||||
# fix encoding
|
# fix encoding
|
||||||
iconv -f latin1 -t utf8 readme-csound5.txt > readme-csound5.txt.utf8
|
iconv -f latin1 -t utf8 readme-csound5.txt > readme-csound5.txt.utf8
|
||||||
mv readme-csound5.txt.utf8 readme-csound5.txt
|
mv readme-csound5.txt.utf8 readme-csound5.txt
|
||||||
|
test -f custom.py || cp custom.py.mkg custom.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if %_lib == "lib64"
|
%if %_lib == "lib64"
|
||||||
@ -69,6 +72,10 @@ rm -rf $RPM_BUILD_ROOT%{_datadir}/doc/csound
|
|||||||
# rename conflicting binary names
|
# rename conflicting binary names
|
||||||
mv $RPM_BUILD_ROOT%{_bindir}/sndinfo $RPM_BUILD_ROOT%{_bindir}/csndinfo
|
mv $RPM_BUILD_ROOT%{_bindir}/sndinfo $RPM_BUILD_ROOT%{_bindir}/csndinfo
|
||||||
mv $RPM_BUILD_ROOT%{_bindir}/extract $RPM_BUILD_ROOT%{_bindir}/csound-extract
|
mv $RPM_BUILD_ROOT%{_bindir}/extract $RPM_BUILD_ROOT%{_bindir}/csound-extract
|
||||||
|
# remove devel files
|
||||||
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_includedir}
|
||||||
|
fdupes $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "$RPM_BUILD_ROOT" != "/" -a -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
|
[ "$RPM_BUILD_ROOT" != "/" -a -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
|
||||||
@ -83,12 +90,16 @@ mv $RPM_BUILD_ROOT%{_bindir}/extract $RPM_BUILD_ROOT%{_bindir}/csound-extract
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYING ChangeLog INSTALL readme-csound5.txt README.SuSE
|
%doc COPYING ChangeLog INSTALL readme-csound5.txt README.SuSE
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_includedir}/*
|
|
||||||
%{_libdir}/lib*
|
|
||||||
%{_libdir}/csound
|
%{_libdir}/csound
|
||||||
%{_datadir}/csound
|
%{_datadir}/csound
|
||||||
|
# %{_includedir}/*
|
||||||
|
# %{_libdir}/lib*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 11 2007 - tiwai@suse.de
|
||||||
|
- updated to version 5.06:
|
||||||
|
* fix k-rate, vrandh and vrandi scaling problems, mod fix
|
||||||
|
* new opcodes: partikkel, partikkelsync
|
||||||
* Tue Mar 27 2007 - tiwai@suse.de
|
* Tue Mar 27 2007 - tiwai@suse.de
|
||||||
- update to version 5.05:
|
- update to version 5.05:
|
||||||
* fixes/improvements on FLTK support
|
* fixes/improvements on FLTK support
|
||||||
|
Loading…
Reference in New Issue
Block a user