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

Diff of /liblscp/trunk/liblscp.spec.in

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

revision 3036 by capela, Thu Nov 3 09:08:44 2016 UTC revision 4036 by capela, Sat Apr 2 10:31:46 2022 UTC
# Line 1  Line 1 
1    #
2    # spec file for package liblscp
3    #
4    # Copyright (C) 2004-2022, 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@
20    %define version @PACKAGE_VERSION@
21    %define release 50.1
22    
23  %define name    @PACKAGE@  %define _soname %{name}6
 %define version @VERSION@  
 %define release 20  
24    
25  %define _prefix @prefix@  %define _prefix @ac_prefix@
26    
27  Summary:        LinuxSampler control protocol API  %if %{defined fedora}
28    %global debug_package %{nil}
29    %endif
30    
31    Summary:        LinuxSampler Control Protocol API library
32  Name:           %{name}  Name:           %{name}
33  Version:        %{version}  Version:        %{version}
34  Release:        %{release}  Release:        %{release}
# Line 15  URL:           http://www.linuxsampler.org/ Line 38  URL:           http://www.linuxsampler.org/
38  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-buildroot  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-buildroot
39  #Packager:      rncbc.org  #Packager:      rncbc.org
40    
41  BuildRequires: doxygen  BuildRequires:  coreutils
42  %if %{defined fedora}  BuildRequires:  cmake
43  BuildRequires: pkgconfig  BuildRequires:  pkgconfig
44  %else  BuildRequires:  glibc-devel
45  BuildRequires: pkg-config  BuildRequires:  doxygen
 %endif  
 BuildRequires: glibc-devel  
46    
47  %description  %description
48  LinuxSampler control protocol API.  LinuxSampler control protocol API library.
49    
50    
51  %package -n %{name}6  %package -n %{_soname}
52  Summary:        LinuxSampler control protocol API library  Summary:        LinuxSampler Control Protocol API library
53  Group:          Productivity/Multimedia/Sound  Group:          System/Libraries
54  Provides:       %{name}  Provides:       %{name}
55    
56  %description -n %{name}6  %description -n %{_soname}
57  LinuxSampler control protocol API library.    LinuxSampler Control Protocol C API library - development files.
58      .
59      This package is for use with the LinuxSampler audio sampling
60      engine / library and packages. Wraps the LinuxSampler network
61      protocol and offers a convenient API in form of a C library.
62      .
63      For further informations visit
64      http://www.linuxsampler.org
65      .
66      This package contains the header files needed for
67      development with liblscp. You will need this only if you
68      intend to compile programs that use this library.
69    
70    
71  %package devel  %package devel
72  Summary:        LinuxSampler control protocol API libraries and include files  Summary:        LinuxSampler Control Protocol API library - development files
73  Group:          Development/Libraries/C and C++  Group:          Development/Libraries/C and C++
74  Requires:       %{name} = %{version}  Requires:       pkgconfig
75    Requires:       %{name} >= %{version}
76    
77  %description devel  %description devel
78  LinuxSampler control protocol API libraries and include files.  LinuxSampler Control Protocol C API library - development files.
79    
80    This package is for use with the LinuxSampler audio sampling
81    engine / library and packages. Wraps the LinuxSampler network
82    protocol and offers a convenient API in form of a C library.
83    
84    For further informations visit
85    http://www.linuxsampler.org
86    
87    This package contains the header files needed for
88    development with liblscp. You will need this only if you
89    intend to compile programs that use this library.
90    
 %prep  
91    
92  %setup  %prep
93  [ -f Makefile.git ] && %__make -f Makefile.git  %setup -q
94    
95  %build  %build
96  %configure  cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -Wno-dev -B build
97  %__make  cmake --build build %{?_smp_mflags}
98    
99  %install  %install
100  %makeinstall  DESTDIR="%{buildroot}" \
101    cmake --install build
102    
103  %clean  %clean
104  [ -d %{buildroot} -a "%{buildroot}" != "" ] && %__rm -rf %{buildroot}  [ -d "%{buildroot}" -a "%{buildroot}" != "/" ] && %__rm -rf "%{buildroot}"
105    
106  %post -n %{name}6  %post -n %{_soname}
107  /sbin/ldconfig  /sbin/ldconfig
108    
109  %postun -n %{name}6  %postun -n %{_soname}
110  /sbin/ldconfig  /sbin/ldconfig
111    
112  %files -n %{name}6  %files -n %{_soname}
113  %defattr(-,root,root)  %defattr(-,root,root)
114  %doc AUTHORS COPYING ChangeLog NEWS README TODO  %doc README LICENSE ChangeLog
115  %{_libdir}/liblscp.so.*  %{_libdir}/liblscp.so.*
116    
117  %files devel  %files devel
118  %defattr(-,root,root)  %defattr(-,root,root)
 %doc doc/html/*  
119  %{_libdir}/liblscp.so  %{_libdir}/liblscp.so
 %{_libdir}/liblscp.a  
 %{_libdir}/liblscp.la  
120  %{_libdir}/pkgconfig/lscp.pc  %{_libdir}/pkgconfig/lscp.pc
121  %dir %{_includedir}/lscp  %dir %{_includedir}/lscp
122  %{_includedir}/lscp/*.h  %{_includedir}/lscp/*.h
123    %dir %{_datadir}/doc/%{name}
124    %dir %{_datadir}/doc/%{name}/html
125    %{_datadir}/doc/%{name}/html/*
126    
127    
128  %changelog  %changelog
129    * Sat Apr  2 2022 Rui Nuno Capela <rncbc@rncbc.org> 0.9.6
130    - A Spring'22 Release.
131    * Sun Jan  9 2022 Rui Nuno Capela <rncbc@rncbc.org> 0.9.5
132    - A Winter'22 Release.
133    * Sun Jul  4 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.4
134    - Early-Summer'21 release.
135    * Tue May 11 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.3
136    - Spring'21 release.
137    * Sun Mar 14 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.2
138    - End-of-Winter'21 release.
139    * Sun Feb  7 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.1
140    - Winter'21 release.
141    * Thu Dec 17 2020 Rui Nuno Capela <rncbc@rncbc.org> 0.9.0
142    - Winter'20 release.
143    * Tue Mar 24 2020 Rui Nuno Capela <rncbc@rncbc.org> 0.6.2
144    - Spring'20 release.
145    * Sun Dec 22 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.6.1
146    - Winter'19 release.
147    * Tue Dec 12 2017 Rui Nuno Capela <rncbc@rncbc.org> 0.6.0
148    - Autumn'17 release: bumped directly to 0.6.0.
149    * Mon Nov 14 2016 Rui Nuno Capela <rncbc@rncbc.org> 0.5.8
150    - Fall'16 release.
151  * Tue Dec 31 2013 Rui Nuno Capela <rncbc@rncbc.org> 0.5.7  * Tue Dec 31 2013 Rui Nuno Capela <rncbc@rncbc.org> 0.5.7
152  - A fifth of a Jubilee release.  - A fifth of a Jubilee release.
153  * Sun Feb 24 2013 Rui Nuno Capela <rncbc@rncbc.org>  * Sun Feb 24 2013 Rui Nuno Capela <rncbc@rncbc.org>
# Line 112  LinuxSampler control protocol API librar Line 178  LinuxSampler control protocol API librar
178  * Tue Nov 28 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.4.1  * Tue Nov 28 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.4.1
179  - Bumped directly to 0.4.1 release.  - Bumped directly to 0.4.1 release.
180  - Getting ready for the new MIDI instrument mapping features.  - Getting ready for the new MIDI instrument mapping features.
181  * Thu Jun 01 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.3.3  * Thu Jun  1 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.3.3
182  - Take a chance for a new 0.3.3 release.  - Take a chance for a new 0.3.3 release.
183  - Changed deprecated copyright attribute to license.  - Changed deprecated copyright attribute to license.
184  - Added ldconfig to post-(un)install steps.  - Added ldconfig to post-(un)install steps.
185  * Mon Aug 29 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.2  * Mon Aug 29 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.2
186  - Fixed for 0.3.2 release.  - Fixed for 0.3.2 release.
187  * Tue Aug 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.1  * Wed Aug 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.1
188  - Prepare 0.3.1 release for sampler channel mute/solo support.  - Prepare 0.3.1 release for sampler channel mute/solo support.
189  * Thu Jun 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.0  * Fri Jun 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.0
190  - Prepare 0.3.0 release featuring timeout flush idiosyncrasies.  - Prepare 0.3.0 release featuring timeout flush idiosyncrasies.
191  * Sun May 22 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.9  * Sun May 22 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.9
192  - Prepare 0.2.9 release due to event subscription LSCP command changes.  - Prepare 0.2.9 release due to event subscription LSCP command changes.
193  * Tue May  6 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.8  * Fri May  6 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.8
194  - Prepare 0.2.8 release in response to [bug #9].  - Prepare 0.2.8 release in response to [bug #9].
195  * Tue Mar 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.7  * Thu Mar 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.7
196  - Prepare 0.2.7 yet another bug-fix release.  - Prepare 0.2.7 yet another bug-fix release.
197  * Tue Mar  1 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.6  * Tue Mar  1 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.6
198  - Prepare 0.2.6 bug-fix release.  - Prepare 0.2.6 bug-fix release.
199  * Tue Feb 14 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.5  * Mon Feb 14 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.5
200  - Prepare 0.2.5 release.  - Prepare 0.2.5 release.
201  * Tue Oct 11 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.4  * Mon Oct 11 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.4
202  - Fixed 0.2.4 release.  - Fixed 0.2.4 release.
203  * Tue Sep 28 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.3  * Tue Sep 28 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.3
204  - Fixed 0.2.3 release.  - Fixed 0.2.3 release.
205  * Tue Jul 29 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.2  * Thu Jul 29 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.2
206  - Prepare 0.2.2 release.  - Prepare 0.2.2 release.
207  * Tue Jul 13 2004 Christian Schoenebeck <cuse@users.sourceforge.net>  * Tue Jul 13 2004 Christian Schoenebeck <cuse@users.sourceforge.net>
208  - renamed 'liblscp.pc' to 'lscp.pc' as well as the pkg-config lib name  - renamed 'liblscp.pc' to 'lscp.pc' as well as the pkg-config lib name

Legend:
Removed from v.3036  
changed lines
  Added in v.4036

  ViewVC Help
Powered by ViewVC