]> git.pld-linux.org Git - SPECS.git/blob - taopm.spec
SPECS updated Sun 1 Aug 20:28:02 CEST 2021
[SPECS.git] / taopm.spec
1 Summary:        Tao - a synthesizer for modelling sounds with physical simulations
2 Summary(pl.UTF-8):      Tao - syntezator do modelowania dźwięków poprzez symulacje fizyczne
3 Name:           taopm
4 Version:        1.0beta
5 %define snap 20050827
6 Release:        0.%{snap}.1
7 License:        GPL
8 Group:          Applications/Sound
9 Source0:        http://dl.sourceforge.net/taopm/tao-1.0-beta-27Aug2005.tar.gz
10 # Source0-md5:  fc9e13cd59407fe05dfdbd56630529b1
11 URL:            http://taopm.sourceforge.net/
12 BuildRequires:  audiofile-devel
13 BuildRequires:  glut-devel
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 Tao is a software package for sound synthesis using physical models.
18 It provides a virtual acoustic material constructed from masses and
19 springs which can be used as the basis for building quite complex
20 virtual musical instruments. Tao comes with a synthesis language for
21 creating and playing instruments and a fully documented (eventually)
22 C++ API for those who would like to use it as an object library.
23
24 %description -l pl.UTF-8
25 Tao to pakiet oprogramowania do syntezy dźwięku przy użyciu modeli
26 fizycznych. Udostępnia wirtualny materiał akustyczny skonstruowany z
27 mas i strun, których można używać za podstawę do budowania dość
28 złożonych wirtualnych instrumentów muzycznych. Tao zawiera język
29 syntezy do tworzenia i gry na instrumentach oraz w pełni
30 udokumentowane API C++ dla tych, którzy chcieliby użyć go jako
31 bibliotekę obiektów.
32
33 %package devel
34 Summary:        Header files for tao library
35 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki tao
36 Group:          Development/Libraries
37 Requires:       %{name} = %{version}-%{release}
38
39 %description devel
40 This is the package containing the header files for tao library.
41
42 %description devel -l pl.UTF-8
43 Ten pakiet zawiera pliki nagłówkowe biblioteki tao.
44
45 %package static
46 Summary:        Static tao library
47 Summary(pl.UTF-8):      Statyczna biblioteka tao
48 Group:          Development/Libraries
49 Requires:       %{name}-devel = %{version}-%{release}
50
51 %description static
52 Static tao library.
53
54 %description static -l pl.UTF-8
55 Statyczna biblioteka tao.
56
57 %prep
58 %setup -q -n tao-1.0-beta-27Aug2005
59
60 %build
61 %configure
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66 install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
67
68 %{__make} install \
69         DESTDIR=$RPM_BUILD_ROOT
70
71 install examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS ChangeLog NEWS README TODO
82 %attr(755,root,root) %{_bindir}/tao
83 %attr(755,root,root) %{_bindir}/tao2*
84 %attr(755,root,root) %{_bindir}/taoparse
85 %attr(755,root,root) %{_libdir}/libtao.so.*.*.*
86 %{_examplesdir}/%{name}-%{version}
87
88 %files devel
89 %defattr(644,root,root,755)
90 %attr(755,root,root) %{_bindir}/tao-config
91 %attr(755,root,root) %{_libdir}/libtao.so
92 %{_libdir}/libtao.la
93
94 %files static
95 %defattr(644,root,root,755)
96 %{_libdir}/libtao.a
This page took 0.15985 seconds and 3 git commands to generate.