summaryrefslogtreecommitdiff
path: root/libs/pbd/libpbd.spec.in
blob: d50622d63815e9c2836d71bdfcc28a39d60842d3 (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
Summary: A general purpose programming library
%define lib_name pbd
Name: lib%{lib_name}
Version: @VERSION@
Release: 2
Copyright: GPL
Source: .
Url: http://www.quasimodo.org
Vendor: Paul Davis <paul@linuxaudiosystems.com>
Packager: jfm3 <jfm3@acm.org>
Group: System Environment/Libraries
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-%{version}-root

%description

This library implements a number of programming utilities used by Paul
Davis (formerly Paul Barton-Davis, hence the name).  It is used in
some of his Open Source software projects.  See
http://ardour.sf.net/ for examples.

%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/libpbd.so*

%package devel
Summary: A general purpose programming library -- developer version.
Group: System Environment/Libraries

%description devel

This library implements a number of programming utilities used by Paul
Davis (formerly Paul Barton-Davis, hence the name).  It is used in
some of his Open Source software projects.  See
http://ardour.sf.net/ for examples.

This package holds static libraries and headers needed by developers
who wish to use libpbd in their programs.

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