]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/rust
fireinfo: Update to 2.2.0
[people/pmueller/ipfire-2.x.git] / lfs / rust
CommitLineData
59fe9735
SS
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
a471762f 4# Copyright (C) 2007-2021 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
395513f5 27VER = 1.51.0
59fe9735
SS
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)
6db404e6 34SUP_ARCH = x86_64 i586 aarch64 armv5tel
59fe9735
SS
35
36ifeq "$(BUILD_ARCH)" "i586"
37 RUST_ARCH = i686
38else
39 RUST_ARCH = $(BUILD_ARCH)
40endif
41
42ifeq "$(BUILD_ARCH)" "armv5tel"
43 RUST_BOOTSTRAP = arm-unknown-linux-gnueabi
44else
45 RUST_BOOTSTRAP = $(RUST_ARCH)-unknown-linux-gnu
46endif
47
48###############################################################################
49# Top-level Rules
50###############################################################################
51
52objects = $(DL_FILE)
53
54$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
55
395513f5
MF
56$(THISAPP)-x86_64-unknown-linux-gnu.tar.gz_MD5 = efc4d147e25918e60678a69fcaf67b55
57$(THISAPP)-i686-unknown-linux-gnu.tar.gz_MD5 = 666d7a99abf2834b2cb4bb8e6c571c76
58$(THISAPP)-aarch64-unknown-linux-gnu.tar.gz_MD5 = e85e1758b9770bae16c253825e2ecf9c
59$(THISAPP)-arm-unknown-linux-gnueabi.tar.gz_MD5 = da4fa1b2bd21dc6d2d7e791d8faaa3eb
59fe9735
SS
60
61install : $(TARGET)
62
63check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65download :$(patsubst %,$(DIR_DL)/%,$(objects))
66
67md5 : $(subst %,%_MD5,$(objects))
68
69###############################################################################
70# Downloading, checking, md5sum
71###############################################################################
72
73$(patsubst %,$(DIR_CHK)/%,$(objects)) :
74 @$(CHECK)
75
76$(patsubst %,$(DIR_DL)/%,$(objects)) :
77 @$(LOAD)
78
79$(subst %,%_MD5,$(objects)) :
80 @$(MD5)
81
82###############################################################################
83# Installation Details
84###############################################################################
85
86$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
87 @$(PREBUILD)
88 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
89
90 cd $(DIR_APP) && ./install.sh \
91 --components=cargo,rustc,rust-std-$(RUST_BOOTSTRAP) \
92 --prefix=/usr \
93 --disable-ldconfig
94
d7005ce8
MT
95 # Remove LLVM tools
96 rm -vf /usr/lib/rustlib/$(RUST_BOOTSTRAP)/bin/rust-ll{d,vm-dwp}
97
59fe9735
SS
98 @rm -rf $(DIR_APP)
99 @$(POSTBUILD)