]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/vdr_streamdev
Switch checksums from MD5 to BLAKE2
[ipfire-2.x.git] / lfs / vdr_streamdev
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2020 IPFire Team <info@ipfire.org> #
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
25 include Config
26
27 SUMMARY = VDR implementation of the VTP (Video Transfer Protocol)
28
29 VER = 0.6.1
30 GIT_VER = e2a9b979d3fb92967c7a6a8221e674eb7e55c813
31
32 THISAPP = vdr-plugin-streamdev-$(GIT_VER)
33 DL_FILE = $(THISAPP).tar.bz2
34
35 DL_FROM = $(URL_IPFIRE)
36 DIR_APP = $(DIR_SRC)/$(THISAPP)
37 TARGET = $(DIR_INFO)/$(THISAPP)
38 PROG = vdr_streamdev
39 PAK_VER = 6
40
41 DEPS =
42
43 SERVICES =
44
45 VDRPLUGVER = 2.4.7
46
47 EXTRA_FLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
48 CFLAGS += $(EXTRA_FLAGS)
49 CXXFLAGS += $(EXTRA_FLAGS) -std=c++11
50
51 ###############################################################################
52 # Top-level Rules
53 ###############################################################################
54
55 objects = $(DL_FILE)
56
57 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
58
59 $(DL_FILE)_BLAKE2 = 4cacadc091ab8d28ccd4318eaf18aaef8f45e6caab86ef461d1b1047039ec921984ebad091d29420779982b5b37606defe5aa6c6828e8f28788886ba9839efea
60
61 install : $(TARGET)
62
63 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65 download : $(patsubst %,$(DIR_DL)/%,$(objects))
66
67 b2 : $(subst %,%_BLAKE2,$(objects))
68
69 dist:
70 @$(PAK)
71
72 ###############################################################################
73 # Downloading, checking, b2sum
74 ###############################################################################
75
76 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
77 @$(CHECK)
78
79 $(patsubst %,$(DIR_DL)/%,$(objects)) :
80 @$(LOAD)
81
82 $(subst %,%_BLAKE2,$(objects)) :
83 @$(B2SUM)
84
85 ###############################################################################
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
93 # cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/vdr-streamdev_recordings-64.patch
94
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 \
97 CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
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 \
102 /usr/lib/vdr/libvdr-streamdev-server.so.$(VDRPLUGVER)
103 ln -svf ../../svdrphosts.conf \
104 /etc/vdr/plugins/streamdev-server/streamdevhosts.conf
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)