View | Details | Raw Unified | Return to bug 34828
Collapse All | Expand All

(-)a/gst-rtsp-server.spec (+14 lines)
Lines 67-72 Requires: %name-devel = %version-%release Link Here
67
%description gir-devel
67
%description gir-devel
68
GObject introspection devel data for the GStreamer RTSP server library.
68
GObject introspection devel data for the GStreamer RTSP server library.
69
69
70
%package examples-binary
71
Summary: Binary examples of using %name
72
Group: Video
73
74
%description examples-binary
75
%summary
76
70
%prep
77
%prep
71
%setup -n %_name-%version
78
%setup -n %_name-%version
72
79
Lines 82-87 GObject introspection devel data for the GStreamer RTSP server library. Link Here
82
%install
89
%install
83
%makeinstall_std
90
%makeinstall_std
91
92
pushd %buildroot%_bindir
93
for i in *; do mv $i %name-$i; done
94
popd
95
84
%files
96
%files
85
%_libdir/libgstrtspserver-%api_ver.so.*
97
%_libdir/libgstrtspserver-%api_ver.so.*
86
%_libdir/gstreamer-%gst_api_ver/libgstrtspclientsink.so
98
%_libdir/gstreamer-%gst_api_ver/libgstrtspclientsink.so
Lines 103-108 GObject introspection devel data for the GStreamer RTSP server library. Link Here
103
%files gir-devel
114
%files gir-devel
104
%_girdir/GstRtspServer-%api_ver.gir
115
%_girdir/GstRtspServer-%api_ver.gir
105
116
117
%files examples-binary
118
%_bindir/*
106
119
107
%changelog
120
%changelog
108
* Tue Mar 20 2018 Yuri N. Sedunov <aris@altlinux.org> 1.14.0-alt1
121
* Tue Mar 20 2018 Yuri N. Sedunov <aris@altlinux.org> 1.14.0-alt1
(-)a/gst-rtsp-server/examples/Makefile.am (-2 / +2 lines)
Lines 1-4 Link Here
1
noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme \
1
bin_PROGRAMS = test-video test-ogg test-mp4 test-readme \
2
		  test-launch test-sdp test-uri test-auth test-auth-digest \
2
		  test-launch test-sdp test-uri test-auth test-auth-digest \
3
		  test-multicast test-multicast2 test-appsrc \
3
		  test-multicast test-multicast2 test-appsrc \
4
		  test-video-rtx test-record test-record-auth \
4
		  test-video-rtx test-record test-record-auth \
Lines 11-17 AM_CFLAGS = $(GST_OBJ_CFLAGS) Link Here
11
LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS)
11
LDADD = $(GST_OBJ_LIBS) $(GIO_LIBS)
12
12
13
if HAVE_LIBCGROUP
13
if HAVE_LIBCGROUP
14
noinst_PROGRAMS += test-cgroups
14
bin_PROGRAMS += test-cgroups
15
LDADD += $(LIBCGROUP_LIBS)
15
LDADD += $(LIBCGROUP_LIBS)
16
endif
16
endif
17
17
(-)a/gst-rtsp-server/examples/Makefile.in (-2 / +2 lines)
Lines 89-95 POST_UNINSTALL = : Link Here
89
build_triplet = @build@
89
build_triplet = @build@
90
host_triplet = @host@
90
host_triplet = @host@
91
target_triplet = @target@
91
target_triplet = @target@
92
noinst_PROGRAMS = test-video$(EXEEXT) test-ogg$(EXEEXT) \
92
bin_PROGRAMS = test-video$(EXEEXT) test-ogg$(EXEEXT) \
93
	test-mp4$(EXEEXT) test-readme$(EXEEXT) test-launch$(EXEEXT) \
93
	test-mp4$(EXEEXT) test-readme$(EXEEXT) test-launch$(EXEEXT) \
94
	test-sdp$(EXEEXT) test-uri$(EXEEXT) test-auth$(EXEEXT) \
94
	test-sdp$(EXEEXT) test-uri$(EXEEXT) test-auth$(EXEEXT) \
95
	test-auth-digest$(EXEEXT) test-multicast$(EXEEXT) \
95
	test-auth-digest$(EXEEXT) test-multicast$(EXEEXT) \
Lines 133-139 CONFIG_HEADER = $(top_builddir)/config.h Link Here
133
CONFIG_CLEAN_FILES =
133
CONFIG_CLEAN_FILES =
134
CONFIG_CLEAN_VPATH_FILES =
134
CONFIG_CLEAN_VPATH_FILES =
135
@HAVE_LIBCGROUP_TRUE@am__EXEEXT_1 = test-cgroups$(EXEEXT)
135
@HAVE_LIBCGROUP_TRUE@am__EXEEXT_1 = test-cgroups$(EXEEXT)
136
PROGRAMS = $(noinst_PROGRAMS)
136
PROGRAMS = $(bin_PROGRAMS)
137
test_appsrc_SOURCES = test-appsrc.c
137
test_appsrc_SOURCES = test-appsrc.c
138
test_appsrc_OBJECTS = test-appsrc.$(OBJEXT)
138
test_appsrc_OBJECTS = test-appsrc.$(OBJEXT)
139
test_appsrc_LDADD = $(LDADD)
139
test_appsrc_LDADD = $(LDADD)

Return to bug 34828