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

Contents of /liblscp/trunk/liblscp.spec.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3972 - (show annotations) (download)
Sun Jul 4 14:24:45 2021 UTC (2 years, 8 months ago) by capela
File size: 7326 byte(s)
* An Early-Summer'21 Release (v0.9.4)
1 #
2 # spec file for package liblscp
3 #
4 # Copyright (C) 2004-2021, 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 48.1
22
23 %define _soname %{name}6
24
25 %define _prefix @ac_prefix@
26
27 %if %{defined fedora}
28 %global debug_package %{nil}
29 %endif
30
31 Summary: LinuxSampler Control Protocol API library
32 Name: %{name}
33 Version: %{version}
34 Release: %{release}
35 License: LGPL-2.0+
36 Source0: %{name}-%{version}.tar.gz
37 URL: http://www.linuxsampler.org/
38 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
39 #Packager: rncbc.org
40
41 BuildRequires: coreutils
42 BuildRequires: cmake
43 BuildRequires: pkgconfig
44 BuildRequires: glibc-devel
45 BuildRequires: doxygen
46
47 %description
48 LinuxSampler control protocol API library.
49
50
51 %package -n %{_soname}
52 Summary: LinuxSampler Control Protocol API library
53 Group: System/Libraries
54 Provides: %{name}
55
56 %description -n %{_soname}
57 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
72 Summary: LinuxSampler Control Protocol API library - development files
73 Group: Development/Libraries/C and C++
74 Requires: pkgconfig
75 Requires: %{name} >= %{version}
76
77 %description devel
78 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
91
92 %prep
93 %setup -q
94
95 %build
96 cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -Wno-dev -S .
97 %__make %{?_smp_mflags}
98
99 %install
100 %__make DESTDIR="%{buildroot}" install
101
102 %clean
103 [ -d "%{buildroot}" -a "%{buildroot}" != "/" ] && %__rm -rf "%{buildroot}"
104
105 %post -n %{_soname}
106 /sbin/ldconfig
107
108 %postun -n %{_soname}
109 /sbin/ldconfig
110
111 %files -n %{_soname}
112 %defattr(-,root,root)
113 %doc AUTHORS COPYING ChangeLog NEWS README TODO
114 %{_libdir}/liblscp.so.*
115
116 %files devel
117 %defattr(-,root,root)
118 %doc doc/html/*
119 %{_libdir}/liblscp.so
120 %{_libdir}/pkgconfig/lscp.pc
121 %dir %{_includedir}/lscp
122 %{_includedir}/lscp/*.h
123
124 %changelog
125 * Sun Jul 4 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.4
126 - Early-Summer'21 release.
127 * Tue May 11 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.3
128 - Spring'21 release.
129 * Sun Mar 14 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.2
130 - End-of-Winter'21 release.
131 * Sun Feb 7 2021 Rui Nuno Capela <rncbc@rncbc.org> 0.9.1
132 - Winter'21 release.
133 * Thu Dec 17 2020 Rui Nuno Capela <rncbc@rncbc.org> 0.9.0
134 - Winter'20 release.
135 * Tue Mar 24 2020 Rui Nuno Capela <rncbc@rncbc.org> 0.6.2
136 - Spring'20 release.
137 * Sun Dec 22 2019 Rui Nuno Capela <rncbc@rncbc.org> 0.6.1
138 - Winter'19 release.
139 * Tue Dec 12 2017 Rui Nuno Capela <rncbc@rncbc.org> 0.6.0
140 - Autumn'17 release: bumped directly to 0.6.0.
141 * Mon Nov 14 2016 Rui Nuno Capela <rncbc@rncbc.org> 0.5.8
142 - Fall'16 release.
143 * Tue Dec 31 2013 Rui Nuno Capela <rncbc@rncbc.org> 0.5.7
144 - A fifth of a Jubilee release.
145 * Sun Feb 24 2013 Rui Nuno Capela <rncbc@rncbc.org>
146 - Use getaddrinfo() instead of deprecated gethostbyname().
147 * Sat Aug 1 2009 Rui Nuno Capela <rncbc@rncbc.org> 0.5.6
148 - New 0.5.6 release.
149 * Fri Oct 12 2007 Rui Nuno Capela <rncbc@rncbc.org> 0.5.5
150 - Changed client interface function, for editing channel instrument.
151 - New 0.5.5 release.
152 * Tue Oct 2 2007 Rui Nuno Capela <rncbc@rncbc.org> 0.5.4
153 - Added new client interface function, for editing instrument.
154 - New 0.5.4 release.
155 * Mon Jan 15 2007 Rui Nuno Capela <rncbc@rncbc.org> 0.5.3
156 - New 0.5.3 release.
157 * Thu Jan 11 2007 Rui Nuno Capela <rncbc@rncbc.org> 0.5.2
158 - Sampler channel effect sends control and global volume support.
159 - Audio routing representation changed to integer array.
160 - New 0.5.2 release.
161 * Fri Dec 22 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.5.1
162 - Added support for new (un)subscribable events.
163 - Examples update.
164 - Prepared for 0.5.1 maintenance release.
165 * Sun Dec 17 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.5.0
166 - Multi MIDI instrument maps introduced, sampler channel assignable.
167 - Moved on up to a brand new 0.5.0 release.
168 * Mon Dec 4 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.4.2
169 - Going up to 0.4.2 fast.
170 * Tue Nov 28 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.4.1
171 - Bumped directly to 0.4.1 release.
172 - Getting ready for the new MIDI instrument mapping features.
173 * Thu Jun 1 2006 Rui Nuno Capela <rncbc@rncbc.org> 0.3.3
174 - Take a chance for a new 0.3.3 release.
175 - Changed deprecated copyright attribute to license.
176 - Added ldconfig to post-(un)install steps.
177 * Mon Aug 29 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.2
178 - Fixed for 0.3.2 release.
179 * Wed Aug 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.1
180 - Prepare 0.3.1 release for sampler channel mute/solo support.
181 * Fri Jun 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.3.0
182 - Prepare 0.3.0 release featuring timeout flush idiosyncrasies.
183 * Sun May 22 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.9
184 - Prepare 0.2.9 release due to event subscription LSCP command changes.
185 * Fri May 6 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.8
186 - Prepare 0.2.8 release in response to [bug #9].
187 * Thu Mar 10 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.7
188 - Prepare 0.2.7 yet another bug-fix release.
189 * Tue Mar 1 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.6
190 - Prepare 0.2.6 bug-fix release.
191 * Mon Feb 14 2005 Rui Nuno Capela <rncbc@rncbc.org> 0.2.5
192 - Prepare 0.2.5 release.
193 * Mon Oct 11 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.4
194 - Fixed 0.2.4 release.
195 * Tue Sep 28 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.3
196 - Fixed 0.2.3 release.
197 * Thu Jul 29 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.2
198 - Prepare 0.2.2 release.
199 * Tue Jul 13 2004 Christian Schoenebeck <cuse@users.sourceforge.net>
200 - renamed 'liblscp.pc' to 'lscp.pc' as well as the pkg-config lib name
201 * Thu Jul 8 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.1
202 - Prepare 0.2.1 bugfix release.
203 * Tue Jul 6 2004 Rui Nuno Capela <rncbc@rncbc.org> 0.2.2
204 - Catch up on 0.2.0 release.
205 * Mon Apr 26 2004 Rui Nuno Capela <rncbc@rncbc.org>
206 - Server stuff moved out (stays on examples source package)
207 * Sat Apr 24 2004 Rui Nuno Capela <rncbc@rncbc.org>
208 - Created initial liblscp.spec.in

  ViewVC Help
Powered by ViewVC