]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/vdr_streamdev
vdr_epgsearch: update to 2.4.2
[ipfire-2.x.git] / lfs / vdr_streamdev
CommitLineData
5e10e82f
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
dceaa04f 4# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
5e10e82f
SS
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
f15707c7
RR
27SUMMARY = VDR implementation of the VTP (Video Transfer Protocol)
28
c435d7dc 29VER = 0.6.1
eb706638 30GIT_VER = e2a9b979d3fb92967c7a6a8221e674eb7e55c813
6e903b7f 31
eb706638
AF
32THISAPP = vdr-plugin-streamdev-$(GIT_VER)
33DL_FILE = $(THISAPP).tar.bz2
5e10e82f 34
c435d7dc 35DL_FROM = $(URL_IPFIRE)
5e10e82f 36DIR_APP = $(DIR_SRC)/$(THISAPP)
c435d7dc 37TARGET = $(DIR_INFO)/$(THISAPP)
58ccbbd4 38PROG = vdr_streamdev
dceaa04f 39PAK_VER = 7
5e10e82f 40
2dc2a278 41DEPS =
5e10e82f 42
f15707c7
RR
43SERVICES =
44
f56e93b9 45VDRPLUGVER = 2.4.7
c435d7dc 46
f6fdef38
MT
47EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
48CFLAGS += $(EXTRA_FLAGS)
180cdb1c 49CXXFLAGS += $(EXTRA_FLAGS) -std=c++11
f6fdef38 50
5e10e82f
SS
51###############################################################################
52# Top-level Rules
53###############################################################################
54
c435d7dc
MT
55objects = $(DL_FILE)
56
57$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
5e10e82f 58
9a7e4d85 59$(DL_FILE)_BLAKE2 = 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea
5e10e82f 60
c435d7dc 61install : $(TARGET)
5e10e82f 62
c435d7dc 63check : $(patsubst %,$(DIR_CHK)/%,$(objects))
5e10e82f 64
c435d7dc
MT
65download : $(patsubst %,$(DIR_DL)/%,$(objects))
66
9a7e4d85 67b2 : $(subst %,%_BLAKE2,$(objects))
5e10e82f 68
66c36198 69dist:
c435d7dc
MT
70 @$(PAK)
71
72###############################################################################
9a7e4d85 73# Downloading, checking, b2sum
c435d7dc
MT
74###############################################################################
75
76$(patsubst %,$(DIR_CHK)/%,$(objects)) :
77 @$(CHECK)
78
79$(patsubst %,$(DIR_DL)/%,$(objects)) :
80 @$(LOAD)
81
9a7e4d85
PM
82$(subst %,%_BLAKE2,$(objects)) :
83 @$(B2SUM)
5e10e82f
SS
84
85###############################################################################
c435d7dc
MT
86# Installation Details
87###############################################################################
88
89$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
90 @$(PREBUILD)
91 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
92
eb706638 93# cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/vdr-streamdev_recordings-64.patch
ab76260b 94
c435d7dc
MT
95 cd $(DIR_APP) && sed -i 's@$(VDRDIR)/device.h@/usr/include/vdr/device.h@' Makefile
96 cd $(DIR_APP) && make $(MAKE_TUNING) LIBDIR=. VDRDIR=/usr/lib/vdr \
f6fdef38 97 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
c435d7dc
MT
98 LOCALEDIR=$$(pwd)/locale all
99
100 -mkdir -pv /etc/vdr/plugins/streamdev-server /usr/lib/vdr/bin
101 cd $(DIR_APP) && install -m 755 server/libvdr-streamdev-server.so \
08434343 102 /usr/lib/vdr/libvdr-streamdev-server.so.$(VDRPLUGVER)
fc0ecdda
MT
103 ln -svf ../../svdrphosts.conf \
104 /etc/vdr/plugins/streamdev-server/streamdevhosts.conf
c435d7dc
MT
105 cd $(DIR_APP) && install -m 755 streamdev-server/externremux.sh \
106 /usr/lib/vdr/bin/externremux.sh
107 install -m 644 $(DIR_SRC)/config/vdr/plugins.d/streamdev-server.conf \
108 /etc/sysconfig/vdr-plugins.d
109
110 @rm -rf $(DIR_APP)
111 @$(POSTBUILD)