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

Annotation of /linuxsampler/trunk/linuxsampler.spec.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 643 - (hide annotations) (download)
Sun Jun 12 23:49:00 2005 UTC (18 years, 9 months ago) by capela
File size: 1746 byte(s)
* RPM .spec script added to repository.

1 capela 643
2     %define name @PACKAGE@
3     %define version @VERSION@
4     %define release 2
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     * Sun Jun 12 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>
62     - Created first official linuxsampler.spec

  ViewVC Help
Powered by ViewVC