]> git.pld-linux.org Git - packages/beast.git/blob - beast.spec
- force /dev/dsp to proper build on builders
[packages/beast.git] / beast.spec
1 Summary:        BEAST (the Bedevilled Audio System)
2 Name:           beast
3 Version:        0.5.1
4 Release:        1
5 License:        GPL
6 Group:          Applications
7 Source0:        http://beast.gtk.org/beast-ftp/v0.5/%{name}-%{version}.tar.gz
8 Patch0:         %{name}-ac.patch
9 URL:            http://beast.gtk.org/
10 BuildRequires:  autoconf
11 BuildRequires:  automake
12 BuildRequires:  gtk+2-devel >=  2.0.0
13 BuildRequires:  libgnomecanvas-devel >= 2.0.0
14 BuildRequires:  guile-devel >= 1.4
15 BuildRequires:  libvorbis-devel >= 1.0
16 BuildRequires:  mad-devel >= 0.14.2
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 BEAST (the Bedevilled Audio System) is a GTK+/GNOME based front-end to
21 BSE (the Bedevilled Sound Engine). BSE is a shared library that comes
22 with the necessary framework to simulate audio synthesis (modular
23 synthesis) in realtime and allow for song composition.
24
25 %package devel
26 Summary:        Header files for Beast
27 Group:          Libraries
28 Requires:       %{name} = %{version}
29
30 %description devel
31 Header files for Beast.
32
33 %prep
34 %setup -q
35 %patch0 -p1
36
37 %build
38 rm -f aclocal.m4
39 %{__libtoolize}
40 %{__aclocal}
41 %{__autoconf}
42 %configure \
43         --enable-devdsp
44
45 %{__make}
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49
50 %{__make} install \
51         DESTDIR=$RPM_BUILD_ROOT
52
53 %clean
54 rm -rf $RPM_BUILD_ROOT
55
56 %post -p /sbin/ldconfig
57 %postun -p /sbin/ldconfig
58
59 %files
60 %defattr(644,root,root,755)
61 %attr(755,root,root) %{_bindir}/*
62 %dir %{_libdir}/bse
63 %{_libdir}/bse/v%{version}/plugins/*.so
64 %{_libdir}/lib*.so.*.*.*
65 %{_datadir}/%{name}
66
67 %files devel
68 %{_includedir}/bse
69 %{_includedir}/bsw
70 %{_includedir}/sfi
71 %{_libdir}/*.la
72 %{_libdir}/*.so
73 %{_mandir}/man3/*
74 %{_pkgconfigdir}/*.pc
75 # do we really need this?
76 %{_libdir}/bse/v%{version}/plugins/*.la
This page took 0.046257 seconds and 3 git commands to generate.