]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/vdr
Changed gitignore to track rootfiles of new packeges
[ipfire-2.x.git] / lfs / vdr
CommitLineData
debeaeaa
AF
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
27VER = 1.6.0
debeaeaa
AF
28THISAPP = vdr-$(VER)
29DL_FILE = $(THISAPP).tar.bz2
98248635
AF
30DL_FILE1 = vdr-streamdev-20080325-http-0_4.tgz
31
debeaeaa
AF
32DL_FROM = $(URL_IPFIRE)
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34TARGET = $(DIR_INFO)/$(THISAPP)
35PROG = vdr
36PAK_VER = 1
37
38DEPS = "freefont fontconfig"
39
40###############################################################################
41# Top-level Rules
42###############################################################################
43
98248635 44objects = $(DL_FILE) $(DL_FILE1) $(DL_FILE2) $(DL_FILE3)
debeaeaa
AF
45
46$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
98248635 47$(DL_FILE1) = $(DL_FROM)/$(DL_FILE1)
debeaeaa
AF
48
49$(DL_FILE)_MD5 = 76f4ebe6525a35e33313d27a3f8e80c0
98248635 50$(DL_FILE1)_MD5 = 874026c643601692077c42ee7a70b720
debeaeaa
AF
51
52install : $(TARGET)
53
54check : $(patsubst %,$(DIR_CHK)/%,$(objects))
55
98248635 56download : $(patsubst %,$(DIR_DL)/%,$(objects))
debeaeaa
AF
57
58md5 : $(subst %,%_MD5,$(objects))
59
60dist:
61 @$(PAK)
62
63###############################################################################
64# Downloading, checking, md5sum
65###############################################################################
66
67$(patsubst %,$(DIR_CHK)/%,$(objects)) :
68 @$(CHECK)
69
70$(patsubst %,$(DIR_DL)/%,$(objects)) :
71 @$(LOAD)
72
73$(subst %,%_MD5,$(objects)) :
74 @$(MD5)
75
76###############################################################################
77# Installation Details
78###############################################################################
79
80$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
81 @$(PREBUILD)
82 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
98248635
AF
83 cd $(DIR_APP)/PLUGINS/src && tar zxf $(DIR_DL)/$(DL_FILE1)
84 cd $(DIR_APP)/PLUGINS/src && ln -s streamdev-0.3.3-20080325-http streamdev
85 cd $(DIR_APP) && make VIDEODIR=/var/video plugins $(MAKETUNING)
86 cd $(DIR_APP) && make VIDEODIR=/var/video vdr $(MAKETUNING)
debeaeaa 87 cd $(DIR_APP) && make PREFIX=. DESTDIR=/opt/vdr/ install
a12b20cb 88 -mkdir -p /opt/vdr/etc
42d62a83 89 cd $(DIR_APP) && install *.conf /opt/vdr/etc/
a12b20cb 90 cp -Rvf $(DIR_SRC)/config/vdr /opt
debeaeaa
AF
91 @rm -rf $(DIR_APP)
92 @$(POSTBUILD)