]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/vdr-vnsiserver3
vdr: Add plugins: -streamdev, -epgsearch, -vnsiserver3.
[people/teissler/ipfire-2.x.git] / lfs / vdr-vnsiserver3
CommitLineData
5e10e82f
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
c435d7dc 4# Copyright (C) 2007-2012 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
c435d7dc
MT
27VER = 0.9.0
28THISAPP = vdr-vnsiserver3
29DL_FILE = $(THISAPP).tar.xz
5e10e82f 30
c435d7dc 31DL_FROM = $(URL_IPFIRE)
5e10e82f 32DIR_APP = $(DIR_SRC)/$(THISAPP)
c435d7dc
MT
33TARGET = $(DIR_INFO)/$(THISAPP)
34PROG = vdr-vnsiserver3
35PAK_VER = 1
5e10e82f 36
9e1084b2 37DEPS = "vdr"
5e10e82f 38
c435d7dc
MT
39VDR_VER = 1.7.41
40
5e10e82f
SS
41###############################################################################
42# Top-level Rules
43###############################################################################
44
c435d7dc
MT
45objects = $(DL_FILE)
46
47$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
5e10e82f 48
c435d7dc 49$(DL_FILE)_MD5 = 159a36577ea50d9772fcf5a92ffd38b5
5e10e82f 50
c435d7dc 51install : $(TARGET)
5e10e82f 52
c435d7dc 53check : $(patsubst %,$(DIR_CHK)/%,$(objects))
5e10e82f 54
c435d7dc
MT
55download : $(patsubst %,$(DIR_DL)/%,$(objects))
56
57md5 : $(subst %,%_MD5,$(objects))
5e10e82f
SS
58
59dist:
c435d7dc
MT
60 @$(PAK)
61
62###############################################################################
63# Downloading, checking, md5sum
64###############################################################################
65
66$(patsubst %,$(DIR_CHK)/%,$(objects)) :
67 @$(CHECK)
68
69$(patsubst %,$(DIR_DL)/%,$(objects)) :
70 @$(LOAD)
71
72$(subst %,%_MD5,$(objects)) :
73 @$(MD5)
5e10e82f
SS
74
75###############################################################################
c435d7dc
MT
76# Installation Details
77###############################################################################
78
79$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
80 @$(PREBUILD)
81 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
82
83 cd $(DIR_APP) && make $(MAKE_TUNING) LIBDIR=. VDRDIR=/usr/lib/vdr \
84 LOCALEDIR=$$(pwd)/locale all
85
86 -mkdir -pv /etc/vdr/plugins/vnsiserver
87 cd $(DIR_APP) && install -m 755 libvdr-vnsiserver.so \
88 /usr/lib/vdr/libvdr-vnsiserver.so.$(VDR_VER)
89 cd $(DIR_APP) && install -m 644 vnsiserver/* /etc/vdr/plugins/vnsiserver
90
91 @rm -rf $(DIR_APP)
92 @$(POSTBUILD)