-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmediastreamer2.spec.in
84 lines (68 loc) · 2.12 KB
/
mediastreamer2.spec.in
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
72
73
74
75
76
77
78
79
80
81
82
83
84
# -*- rpm-spec -*-
#
# mediastreamer2 -- A media streaming library for telephony applications
#
%ifarch %ix86
%define mediastreamer2_cpu pentium4
%endif
Summary: Audio/Video real-time streaming
Name: mediastreamer
Version: @MEDIASTREAMER_VERSION@
Release: %(git describe --tags --abbrev=40 | sed -rn 's/^.*-([0-9]+)-g[a-z0-9]{40}$/\1/p' || echo '1')%{?dist}
License: GPL
Group: Applications/Communications
URL: http://www.mediastreamer2.com
Source0: %{name}-@[email protected]
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%ifarch %ix86
BuildArch: i686
%endif
%description
Mediastreamer2 is a GPL licensed library to make audio and video
real-time streaming and processing. Written in pure C, it is based
upon the oRTP library.
%package devel
Summary: Headers, libraries and docs for the mediastreamer2 library
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
Mediastreamer2 is a GPL licensed library to make audio and video
real-time streaming and processing. Written in pure C, it is based
upon the ortp library.
This package contains header files and development libraries needed to
develop programs using the mediastreamer2 library.
%define video %{?_without_video:0}%{!?_without_video:1}
%prep
%setup -q
%build
options="--enable-shared --enable-static --disable-glx --docdir=%{_docdir} "
%if !%{video}
options="$options --disable-video"
%endif
%configure $options
make -j$RPM_BUILD_NCPUS
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
%{_bindir}/mediastream
%{_bindir}/msaudiocmp
%{_libdir}/*.so.*
%{_datadir}/images/nowebcamCIF.jpg
%{_datadir}/locale/??/LC_MESSAGES/mediastreamer.mo
%{_datadir}/locale/??_??/LC_MESSAGES/mediastreamer.mo
%files devel
%defattr(-,root,root,-)
%{_libdir}/*.la
%{_libdir}/*.a
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%{_includedir}
%{_docdir}
%changelog
* Tue Oct 25 2005 Francois-Xavier Kowalski <[email protected]>
- Add to mediastreamer2 distribution with "make rpm" target