blob: deba703514935e8eed750cf41e0e92fdb9276287 (
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
|
Name: gupnp-av
Summary: GUPnP-AV is a collection of helpers for building UPnP AV applications
Version: 0.12.4
Release: 0
Group: System/Libraries
License: LGPLv2+
URL: http://www.gupnp.org/
Source0: http://download.gnome.org/sources/%{name}/0.12/%{name}-%{version}.tar.gz
Requires(post): /sbin/ldconfig
Requires(postun): /sbin/ldconfig
BuildRequires: pkgconfig(gupnp-1.0)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gobject-2.0)
BuildRequires: pkgconfig(libxml-2.0)
%description
GUPnP is an object-oriented open source framework for creating UPnP
devices and control points, written in C using GObject and libsoup.
The GUPnP API is intended to be easy to use, efficient and flexible.
GUPnP-AV is a collection of helpers for building AV (audio/video)
applications using GUPnP.
%package devel
Summary: Development package for gupnp-av
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Files for development with gupnp-av.
%prep
%setup -q -n %{name}-%{version}
%build
%configure --disable-static
make %{?jobs:-j%jobs}
%install
rm -rf %{buildroot}
%make_install
rm -rf $RPM_BUILD_ROOT%{_datadir}/gtk-doc
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING README
%{_libdir}/*.so.*
%{_datadir}/gupnp-av/*.xsd
%files devel
%defattr(-,root,root,-)
%{_includedir}/gupnp-av-1.0/libgupnp-av
%{_libdir}/*.so
%{_libdir}/pkgconfig/gupnp-av-1.0.pc
|