]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - pkgs/system-release/system-release.nm
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-3.x
[people/arne_f/ipfire-3.x.git] / pkgs / system-release / system-release.nm
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007, 2008 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
25 include $(PKGROOT)/Include
26
27 PKG_NAME = system-release
28 PKG_VER = $(DISTRO_VERSION)
29 PKG_REL = 1
30 PKG_ARCH = noarch
31
32 PKG_MAINTAINER = Michael Tremer <michael.tremer@ipfire.org>
33 PKG_GROUP = System/Base
34 PKG_URL = http://www.ipfire.org
35 PKG_LICENSE =
36 PKG_SUMMARY = $(DISTRO_NAME) release files.
37
38 define PKG_DESCRIPTION
39 $(DISTRO_NAME) release files such as pakfire configs and various /etc/ \
40 files that define the release.
41 endef
42
43 PKG_TARBALL =
44
45 ###############################################################################
46 # Installation Details
47 ###############################################################################
48
49 STAGE_PREPARE = # Do nothing
50 STAGE_BUILD = # Do nothing
51
52 define STAGE_INSTALL
53 -mkdir -pv $(BUILDROOT)/etc
54
55 echo "$(DISTRO_NAME) v$(DISTRO_VERSION) for $(MACHINE) - $(DISTRO_SLOGAN) (\l)" \
56 > $(BUILDROOT)/etc/issue
57 echo "===============================" >> $(BUILDROOT)/etc/issue
58 echo "\n running on \s \r \m" >> $(BUILDROOT)/etc/issue
59
60 echo "$(DISTRO_NAME) release $(DISTRO_VERSION) ($(DISTRO_SLOGAN))" \
61 > $(BUILDROOT)/etc/$(DISTRO_SNAME)-release
62 ln -svf $(DISTRO_SNAME)-release $(BUILDROOT)/etc/system-release
63 endef