]> git.pld-linux.org Git - packages/chuck.git/blob - chuck.spec
- added
[packages/chuck.git] / chuck.spec
1 Summary:        ChucK audio programming language
2 Name:           chuck
3 Version:        1.1.5.2
4 Release:        1
5 License:        GPL
6 Group:          Applications/Sound
7 Source0:        http://chuck.cs.princeton.edu/release/files/%{name}-%{version}.tgz
8 # Source0-md5:  e12df7852d1796d766bd68c0d1fafb03
9 URL:            http://chuck.cs.princeton.edu/
10 BuildRequires:  alsa-lib-devel
11 BuildRequires:  jack-audio-connection-kit-devel
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 ChucK 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
21 cd src
22 make linux-jack
23 cd -
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27 # create directories if necessary
28 install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}}
29
30 cp src/chuck $RPM_BUILD_ROOT%{_bindir}
31 cp -a examples $RPM_BUILD_ROOT%{_examplesdir}/%{name}
32
33 %clean
34 rm -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.216816 seconds and 3 git commands to generate.