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

Diff of /qsampler/trunk/qsampler.spec.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 755 by capela, Wed Aug 24 21:56:12 2005 UTC revision 3755 by capela, Tue Mar 24 12:49:44 2020 UTC
# Line 1  Line 1 
1    #
2    # spec file for package qsampler
3    #
4    # Copyright (C) 2004-2020, rncbc aka Rui Nuno Capela. All rights reserved.
5    # Copyright (C) 2007,2008,2015 Christian Schoenebeck
6    #
7    # All modifications and additions to the file contributed by third parties
8    # remain the property of their copyright owners, unless otherwise agreed
9    # upon. The license for this file, and modifications and additions to the
10    # file, is the same license as for the pristine package itself (unless the
11    # license for the pristine package is not an Open Source License, in which
12    # case the license is the MIT License). An "Open Source License" is a
13    # license that conforms to the Open Source Definition (Version 1.9)
14    # published by the Open Source Initiative.
15    #
16    # Please submit bugfixes or comments via http://bugs.opensuse.org/
17    #
18    
19  %define name    @PACKAGE_TARNAME@  %define name    @PACKAGE_TARNAME@
20  %define version @PACKAGE_VERSION@  %define version @PACKAGE_VERSION@
21  %define release 6  %define release 42
22  %define prefix  /usr/local  
23    %define _prefix @ac_prefix@
24    
25    %if %{defined fedora}
26    %define debug_package %{nil}
27    %endif
28    
29  Summary:        A LinuxSampler Qt GUI interface.  Summary:        A LinuxSampler Qt GUI interface
30  Name:           %{name}  Name:           %{name}
31  Version:        %{version}  Version:        %{version}
32  Release:        %{release}  Release:        %{release}
33  Prefix:         %{prefix}  License:        GPL-2.0+
34  Copyright:      GPL  Group:          Productivity/Multimedia/Sound/Midi
 Group:          Sound  
35  Source0:        %{name}-%{version}.tar.gz  Source0:        %{name}-%{version}.tar.gz
36  URL:            http://qsampler.sourceforge.net/  URL:            http://qsampler.sourceforge.net/
37  BuildRoot:      /var/tmp/%{name}-%{version}-buildroot  #Packager:      rncbc.org
38  Requires:       liblscp >= 0.3.2, libgig >= 2.0.2  
39    BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-buildroot
40    
41    %if %{defined fedora}
42    BuildRequires:  pkgconfig
43    BuildRequires:  qt5-qtbase-devel >= 5.1, qt5-linguist
44    %else
45    BuildRequires:  pkg-config
46    BuildRequires:  libqt5-qtbase-devel >= 5.1, libqt5-linguist
47    %endif
48    BuildRequires:  liblscp-devel >= 0.5.6
49    BuildRequires:  libgig-devel >= 3.3.0
50    
51  %description  %description
52  QSampler is a LinuxSampler GUI front-end application written in C++ around  Qsampler is a LinuxSampler GUI front-end application written in C++ around
53  the Qt3 toolkit using Qt Designer. For the moment it just wraps the client  the Qt framework using Qt Designer. For the moment it just wraps the client
54  interface of LinuxSampler Control Protocol (LSCP) (http://www.linuxsampler.org).  interface of LinuxSampler Control Protocol (LSCP) (http://www.linuxsampler.org).
55    
56  %prep  %prep
   
57  %setup  %setup
58  [ -f Makefile.cvs ] && make -f Makefile.cvs  [ -x ./autogen.sh ] && ./autogen.sh
59    
60  %build  %build
61  export PATH=$QTDIR/bin:$PATH  %configure
62  ./configure --prefix=%{prefix}  %__make %{?_smp_mflags}
 make  
63    
64  %install  %install
65  if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi  %__make DESTDIR="%{buildroot}" install
 mkdir -p $RPM_BUILD_ROOT  
 make prefix=$RPM_BUILD_ROOT%{prefix} install  
66    
67  %clean  %clean
68  if [ -d $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi  [ -d "%{buildroot}" -a "%{buildroot}" != "/" ] && %__rm -rf "%{buildroot}"
69    
70  %files  %files
71  %defattr(-,root,root)  %defattr(-,root,root)
72  %doc AUTHORS COPYING ChangeLog README TODO  %doc AUTHORS COPYING ChangeLog README TODO
73  %{prefix}/bin/qsampler  #dir %{_datadir}/mime
74  %{prefix}/share/icons/qsampler.png  #dir %{_datadir}/mime/packages
75    #dir %{_datadir}/applications
76    %dir %{_datadir}/icons/hicolor
77    %dir %{_datadir}/icons/hicolor/32x32
78    %dir %{_datadir}/icons/hicolor/32x32/apps
79    %dir %{_datadir}/icons/hicolor/32x32/mimetypes
80    %dir %{_datadir}/icons/hicolor/scalable
81    %dir %{_datadir}/icons/hicolor/scalable/apps
82    %dir %{_datadir}/icons/hicolor/scalable/mimetypes
83    %dir %{_datadir}/%{name}
84    %dir %{_datadir}/%{name}/translations
85    %dir %{_datadir}/metainfo
86    #dir %{_datadir}/man
87    #dir %{_datadir}/man/man1
88    %{_bindir}/%{name}
89    %{_datadir}/mime/packages/%{name}.xml
90    %{_datadir}/applications/%{name}.desktop
91    %{_datadir}/icons/hicolor/32x32/apps/%{name}.png
92    %{_datadir}/icons/hicolor/32x32/mimetypes/application-x-%{name}*.png
93    %{_datadir}/icons/hicolor/scalable/apps/%{name}.svg
94    %{_datadir}/icons/hicolor/scalable/mimetypes/application-x-%{name}*.svg
95    %{_datadir}/%{name}/translations/%{name}_*.qm
96    %{_datadir}/metainfo/%{name}.appdata.xml
97    %{_datadir}/man/man1/%{name}*.1.gz
98    
99  %changelog  %changelog
100  * Wed Aug 24 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Tue Mar 24 2020 Rui Nuno Capela <rncbc@rncbc.org> 0.6.2
101    - Spring'20 release.
102    * Sun Dec 22 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.6.1
103    - Winter'19 release.
104    * Thu Oct 17 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.6.0
105    - Autumn'19 release.
106    * Fri Jul 12 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.5.6
107    - Summer'19 release.
108    * Thu Apr 11 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.5.5
109    - Spring-Break'19 release.
110    * Mon Mar 11 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.5.4
111    - Pre-LAC2019 release frenzy.
112    * Thu Dec 06 2018 Rui Nuno Capela <rncbc@rncbc.org> 0.5.3
113    - An End of Autumn'18 Release.
114    * Sun Jul 22 2018 Rui Nuno Capela <rncbc@rncbc.org> 0.5.2
115    - Summer'18 Release.
116    * Mon May 21 2018 Rui Nuno Capela <rncbc@rncbc.org> 0.5.1
117    - Pre-LAC2018 release frenzy.
118    * Tue Dec 12 2017 Rui Nuno Capela <rncbc@rncbc.org> 0.5.0
119    - An Autumn'17 release.
120    * Thu Apr 27 2017 Rui Nuno Capela <rncbc@rncbc.org> 0.4.3
121    - Pre-LAC2017 release frenzy.
122    * Mon Nov 14 2016 Rui Nuno Capela <rncbc@rncbc.org> 0.4.2
123    - A Fall'16 release.
124    * Wed Sep 14 2016 Rui Nuno Capela <rncbc@rncbc.org> 0.4.1
125    - End of Summer'16 release.
126    * Tue Apr  5 2016 Rui Nuno Capela <rncbc@rncbc.org> 0.4.0
127    - Spring'16 release frenzy.
128    * Sun Jul 19 2015 Rui Nuno Capela <rncbc@rncbc.org> 0.3.1
129    - Summer'15 release frenzy.
130    * Wed Mar 25 2015 Rui Nuno Capela <rncbc@rncbc.org> 0.3.0
131    - Pre-LAC2015 release frenzy.
132    * Tue Dec 31 2013 Rui Nuno Capela <rncbc@rncbc.org> 0.2.3
133    - A fifth of a Jubilee release.
134    * Mon May 17 2010 Rui Nuno Capela <rncbc@rncbc.org>
135    - Standard desktop icon fixing.
136    * Sat Aug  1 2009 Rui Nuno Capela <rncbc@rncbc.org> 0.2.2
137    - New 0.2.2 release.
138    * Thu Dec 6 2007 Rui Nuno Capela <rncbc@rncbc.org>
139    - Qt4 migration complete.
140    * Mon Jun 25 2007 Rui Nuno Capela <rncbc@rncbc.org>
141    - Application icon is now installed to (prefix)/share/pixmaps.
142    - Declared fundamental build and run-time requirements.
143    - Destination install directory prefix is now in spec.
144    - Spec is now a bit more openSUSE compliant.
145    * Mon Jan 15 2007 Rui Nuno Capela <rncbc@rncbc.org>
146    - Added sampler channel FX send support at session save code-level.
147    - Global sampler volume slider/spinbox combo is now featured.
148    * Sun Dec 17 2006 Rui Nuno Capela <rncbc@rncbc.org>
149    - Added preliminary MIDI instrument mapping support.
150    * Thu Jun 01 2006 Rui Nuno Capela <rncbc@rncbc.org>
151    - Take a chance for a new 0.1.3 release.
152    - Changed deprecated copyright attribute to license.
153    * Wed Aug 24 2005 Rui Nuno Capela <rncbc@rncbc.org>
154  - Prepared auto-generation from configure.  - Prepared auto-generation from configure.
155  * Tue Aug 16 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Tue Aug 16 2005 Rui Nuno Capela <rncbc@rncbc.org>
156  - Get in sync with latest offerings from liblscp (0.3.1) and  - Get in sync with latest offerings from liblscp (0.3.1) and
157    specially libgig (2.0.2) which broke previous ABI, somewhat.    specially libgig (2.0.2) which broke previous ABI, somewhat.
158  * Thu Jun 23 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Thu Jun 23 2005 Rui Nuno Capela <rncbc@rncbc.org>
159  - Even minor workings needs a rest.  - Even minor workings needs a rest.
160  * Mon Jun 13 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Mon Jun 13 2005 Rui Nuno Capela <rncbc@rncbc.org>
161  - The mantra of bugfixes.  - The mantra of bugfixes.
162  * Mon May 23 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Mon May 23 2005 Rui Nuno Capela <rncbc@rncbc.org>
163  - Device configuration breakthrough.  - Device configuration breakthrough.
164  * Fri Mar 4 2005 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Fri Mar 4 2005 Rui Nuno Capela <rncbc@rncbc.org>
165  - Fifth alpha-release.  - Fifth alpha-release.
166  * Wed Nov 16 2004 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Tue Nov 16 2004 Rui Nuno Capela <rncbc@rncbc.org>
167  - Prepared for the fourth alpha release.  - Prepared for the fourth alpha release.
168  * Wed Nov 16 2004 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Tue Nov 16 2004 Rui Nuno Capela <rncbc@rncbc.org>
169  - Prepared for the fourth alpha release.  - Prepared for the fourth alpha release.
170  * Wed Jun 2 2004 Rui Nuno Capela <rncbc@users.sourceforge.net>  * Wed Jun 2 2004 Rui Nuno Capela <rncbc@rncbc.org>
171  - Created initial qsampler.spec  - Created initial qsampler.spec

Legend:
Removed from v.755  
changed lines
  Added in v.3755

  ViewVC Help
Powered by ViewVC