summaryrefslogtreecommitdiff
path: root/libs/midi++2/libmidi++.spec.in
blob: fbeb6a263a51ab79111834515737464e29d6e522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Summary: A high level MIDI handling library.
%define lib_name midi++
Name: lib%{lib_name}
Version: @VERSION@
Release: 2
Copyright: GPL
Source: ftp://ftp.quasimodo.org/pub/libs/midi++/current/%{name}-%{version}.tar.gz
Url: http://www.quasimodo.org
Vendor: Paul Barton Davis <pbd@op.net>
Packager: jfm3 <jfm3@acm.org>
Group: System Environment/Libraries
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-%{version}-root

%description

libmidi++ is a C++ library that uses libsigc++ to make handling MIDI
I/O from MIDI hardware trivial.  You can attach "callbacks" to any
MIDI input or output event, ranging from each individual byte, to a
particular message type on a particular channel.  It also provides
channel "state".
 
%prep
%setup -q

%build
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure $ARCH_FLAGS --prefix=%{prefix}
make

%install
rm -rf $RPM_BUILD_ROOT
install -d -m 755 $RPM_BUILD_ROOT%{prefix}/{{include,lib}/%{lib_name}}
make install INSTALL="%(which install) -p" prefix=$RPM_BUILD_ROOT%{prefix}

%post
/sbin/ldconfig

%postun
/sbin/ldconfig

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root)
%doc README AUTHORS NEWS COPYING*
%{prefix}/lib/libmidipp.so*

%package devel
Summary: A high level MIDI handling library -- develper version.
Group: System Environment/Libraries

%description devel

libmidi++ is a C++ library that uses libsigc++ to make handling MIDI
I/O from MIDI hardware trivial.  You can attach "callbacks" to any
MIDI input or output event, ranging from each individual byte, to a
particular message type on a particular channel.  It also provides
channel "state".
 
This package holds static libraries and headers needed by developers
who wish to use libmidi++ in their programs.

%files devel
%defattr(-,root,root)
%{prefix}/include/midi++/*
%{prefix}/lib/libmidipp.a
%{prefix}/lib/libmidipp.la
%{prefix}/bin/midi++-config
%{prefix}/share/aclocal/midi++.m4
%{prefix}/share/aclocal/midi.m4