/[svn]/linuxsampler/trunk/linuxsampler.spec.in
ViewVC logotype

Contents of /linuxsampler/trunk/linuxsampler.spec.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 678 - (show annotations) (download)
Thu Jun 23 22:50:49 2005 UTC (18 years, 9 months ago) by capela
File size: 1857 byte(s)
RPM .spec ready on 0.3.2 bugfix release.

1
2 %define name @PACKAGE@
3 %define version @VERSION@
4 %define release 6
5 %define prefix @prefix@
6
7 Summary: LinuxSampler - modular, streaming capable, realtime audio sampler
8 Name: %{name}
9 Version: %{version}
10 Release: %{release}
11 Prefix: %{prefix}
12 Copyright: GPL
13 Group: Sound
14 Source0: %{name}-%{version}.tar.bz2
15 URL: http://www.linuxsampler.org/
16 BuildRoot: /var/tmp/%{name}-%{version}-buildroot
17 Requires: libgig >= 2.0.1
18
19 %description
20 LinuxSampler is a work in progress. It's goal is to produce a free
21 software audio sampler with professional grade features.
22
23 It offers disk streaming capability and supports the Gigasampler
24 format which is currently considered to be the best sampler format
25 in regards of possibilities and sound quality.
26
27 This package provides the backend of LinuxSampler, that is the
28 sampler engine together with audio and MIDI drivers. LinuxSampler
29 can be controlled via network interface which uses an ASCII based
30 protocol called LSCP. You might consider to install a GUI frontend
31 for LinuxSampler as well.
32
33 For more informations please visit http://www.linuxsampler.org
34
35 %prep
36
37 %setup
38 [ -f Makefile.cvs ] && make -f Makefile.cvs
39
40 %build
41 ./configure --prefix=%{prefix} --enable-optimize
42 [ -f Makefile.cvs ] && make parser
43 make
44
45 %install
46 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
47 mkdir -p $RPM_BUILD_ROOT
48 make prefix=$RPM_BUILD_ROOT%{prefix} install
49
50 %clean
51 if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
52
53 %files
54 %defattr(-,root,root)
55 %doc AUTHORS COPYING ChangeLog README
56 %{prefix}/bin/linuxsampler
57 %{prefix}/lib/linuxsampler/liblinuxsampler.*
58 %{prefix}/man/man1/linuxsampler.*
59
60 %changelog
61 * Thu Jun 23 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>
62 - Ready for linuxsampler 0.3.2 bugfix release.
63 * Sun Jun 12 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>
64 - Created first official linuxsampler.spec

  ViewVC Help
Powered by ViewVC