]> git.pld-linux.org Git - packages/chuck.git/blame - chuck.spec
- added
[packages/chuck.git] / chuck.spec
CommitLineData
db5986e3 1Summary: ChucK audio programming language
2Name: chuck
3Version: 1.1.5.2
4Release: 1
5License: GPL
6Group: Applications/Sound
7Source0: http://chuck.cs.princeton.edu/release/files/%{name}-%{version}.tgz
8# Source0-md5: e12df7852d1796d766bd68c0d1fafb03
9URL: http://chuck.cs.princeton.edu/
10BuildRequires: alsa-lib-devel
11BuildRequires: jack-audio-connection-kit-devel
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15ChucK is a new audio programming language for real-time synthesis, composition, and performance, which runs on commodity operating systems. ChucK presents a new time-based concurrent programming model, which supports multiple, simultaneous, dynamic control rates, and the ability to add, remove, and modify code, on-the-fly, while the program is running, without stopping or restarting. It offers composers, researchers, and performers a powerful and flexible programming tool for building and experimenting with complex audio synthesis programs, and real-time interactive control.
16
17%prep
18%setup -q
19
20%build
21cd src
22make linux-jack
23cd -
24
25%install
26rm -rf $RPM_BUILD_ROOT
27# create directories if necessary
28install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}}
29
30cp src/chuck $RPM_BUILD_ROOT%{_bindir}
31cp -a examples $RPM_BUILD_ROOT%{_examplesdir}/%{name}
32
33%clean
34rm -rf $RPM_BUILD_ROOT
35
36%files
37%defattr(644,root,root,755)
38%doc AUTHORS DEVELOPER doc PROGRAMMER QUICKSTART README THANKS TODO VERSIONS
39%attr(755,root,root) %{_bindir}/*
40%{_examplesdir}/%{name}
This page took 0.058984 seconds and 4 git commands to generate.