]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/rust
rust: disabled build
[ipfire-2.x.git] / lfs / rust
CommitLineData
59fe9735
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
04a42c81 4# Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
59fe9735
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
27VER = 1.37.0
28
29THISAPP = rust-$(VER)
30DL_FILE = $(THISAPP)-$(RUST_BOOTSTRAP).tar.gz
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)-$(RUST_BOOTSTRAP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
52d57e97
AF
35SUP_ARCH = none
36
59fe9735
SS
37ifeq "$(BUILD_ARCH)" "i586"
38 RUST_ARCH = i686
39else
40 RUST_ARCH = $(BUILD_ARCH)
41endif
42
43ifeq "$(BUILD_ARCH)" "armv5tel"
44 RUST_BOOTSTRAP = arm-unknown-linux-gnueabi
45else
46 RUST_BOOTSTRAP = $(RUST_ARCH)-unknown-linux-gnu
47endif
48
49###############################################################################
50# Top-level Rules
51###############################################################################
52
53objects = $(DL_FILE)
54
55$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
56
f2e7d2bf 57$(THISAPP)-x86_64-unknown-linux-gnu.tar.gz_MD5 = 3f84df04bd0cf0ea4668390be263945e
2228871e
AF
58$(THISAPP)-i686-unknown-linux-gnu.tar.gz_MD5 = 29411d7420184ad51f99339b2e2cf20a
59$(THISAPP)-aarch64-unknown-linux-gnu.tar.gz_MD5 = 28f9556a3febd2d38c0ba97337d56cb8
60$(THISAPP)-arm-unknown-linux-gnueabi.tar.gz_MD5 = 970ad24c516394466e7b8ca40689ee76
59fe9735
SS
61
62install : $(TARGET)
63
64check : $(patsubst %,$(DIR_CHK)/%,$(objects))
65
66download :$(patsubst %,$(DIR_DL)/%,$(objects))
67
68md5 : $(subst %,%_MD5,$(objects))
69
70###############################################################################
71# Downloading, checking, md5sum
72###############################################################################
73
74$(patsubst %,$(DIR_CHK)/%,$(objects)) :
75 @$(CHECK)
76
77$(patsubst %,$(DIR_DL)/%,$(objects)) :
78 @$(LOAD)
79
80$(subst %,%_MD5,$(objects)) :
81 @$(MD5)
82
83###############################################################################
84# Installation Details
85###############################################################################
86
87$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
88 @$(PREBUILD)
89 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
90
91 cd $(DIR_APP) && ./install.sh \
92 --components=cargo,rustc,rust-std-$(RUST_BOOTSTRAP) \
93 --prefix=/usr \
94 --disable-ldconfig
95
96 @rm -rf $(DIR_APP)
97 @$(POSTBUILD)