]> git.ipfire.org Git - ipfire-3.x.git/blame - lfs/bc
Added some lines for ext4 on installer.
[ipfire-3.x.git] / lfs / bc
CommitLineData
54616743
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
2de619f2 4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
54616743
MT
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
27PKG_NAME = bc
28VER = 1.06
2de619f2 29PKG_VER = 0
54616743
MT
30
31THISAPP = $(PKG_NAME)-$(VER)
32DL_FILE = $(THISAPP).tar.gz
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
6679675b 35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
54616743 36
2de619f2
MT
37MAINTAINER =
38GROUP = System/Tools
39EXTRA = no
40DEBUG = no
41DEPS =
42
43URL = http://www.gnu.org/software/bc/
44LICENSE = GPLv2+
45SHORT_DESC = bc is an arbitrary precision numeric processing language.
46
47define LONG_DESC
48 bc is a language that supports arbitrary precision numbers with \
49 interactive execution of statements. There are some similarities in the \
50 syntax to the C programming language.
51endef
52
54616743
MT
53###############################################################################
54# Top-level Rules
55###############################################################################
56
57objects = $(DL_FILE)
58
2de619f2
MT
59download: $(objects)
60
02eb2097
MT
61info:
62 $(DO_PKG_INFO)
63
6679675b 64install: $(OBJECT)
54616743 65
2de619f2
MT
66package:
67 @$(DO_PACKAGE)
54616743 68
2de619f2 69$(objects):
54616743
MT
70 @$(LOAD)
71
72###############################################################################
73# Installation Details
74###############################################################################
75
6679675b 76$(OBJECT): $(objects)
54616743 77 @$(PREBUILD)
2de619f2 78 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
54616743
MT
79
80ifeq "$(STAGE)" "toolchain"
88068980
MT
81 cd $(DIR_APP) && \
82 ./configure \
83 $(CONFIGURE_ARCH) \
84 --prefix=$(TOOLS_DIR)
62eef670 85 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
54616743
MT
86 cd $(DIR_APP) && make install
87endif
88
2de619f2 89ifeq "$(STAGE)" "$(SNAME)"
54616743
MT
90 cd $(DIR_APP) && sed -i '/PROTO.*readline/d' bc/scan.l
91 cd $(DIR_APP) && sed -i '/flex -I8/s/8//' configure
92 cd $(DIR_APP) && sed -i '/stdlib/a #include <string.h>' lib/number.c
93 cd $(DIR_APP) && sed -i 's/program.*save/static &/' bc/load.c
8e7fa959
MT
94 cd $(DIR_APP) && \
95 ./configure \
96 $(CONFIGURE_ARCH) \
97 --prefix=/usr \
98 --with-readline
62eef670 99 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
54616743
MT
100 cd $(DIR_APP) && make install
101endif
102
103 @rm -rf $(DIR_APP)
104 @$(POSTBUILD)