]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/mpfire
Ein Paar Dateien fuer die GPLv3 angepasst.
[ipfire-2.x.git] / lfs / mpfire
CommitLineData
a28fdc01 1###############################################################################
a28fdc01 2# #
70df8302
MT
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 #
a28fdc01 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
a28fdc01
CS
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
a28fdc01
CS
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
a28fdc01
CS
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27VER = ipfire
28
29THISAPP = mpfire-$(VER)
30DIR_APP = $(DIR_SRC)/$(THISAPP)
31TARGET = $(DIR_INFO)/$(THISAPP)
32PROG = mpfire
33PAK_VER = 1
34
35DESCDE = "MPFire ist ein CGI Multimediaplayer auf Basis von mpg123."
36DESCEN = "MPFire is a mpg123 based CGI Multimedia-Player."
37DEPS = "mpg123"
38
39###############################################################################
40# Top-level Rules
41###############################################################################
42
43objects =
44
45install : $(TARGET)
46
47check :
48
49download :
50
51md5 :
52
53dist:
54 @$(PAK)
55
56###############################################################################
57# Installation Details
58###############################################################################
59
60$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
61 @$(PREBUILD)
62 -mkdir -p /var/ipfire/mpfire/{bin,db}
63 touch /var/ipfire/mpfire/{settings,playlist}
64 touch /var/ipfire/mpfire/db/songs.db
65 chown nobody.nobody /var/ipfire/mpfire/{settings,playlist}
66 install -v -m 755 $(DIR_SRC)/config/mpfire/mpfire.pl /var/ipfire/mpfire/bin
a2d5130f 67 install -v -m 644 $(DIR_SRC)/config/mpfire/webradio /var/ipfire/mpfire/
a28fdc01 68 @$(POSTBUILD)