]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/rust
switch arm 32 bit arch from armv5tel to armv6l
[people/pmueller/ipfire-2.x.git] / lfs / rust
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2021 IPFire Team <info@ipfire.org> #
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 Config
26
27 VER = 1.51.0
28
29 THISAPP = rust-$(VER)
30 DL_FILE = $(THISAPP)-$(RUST_BOOTSTRAP).tar.gz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)-$(RUST_BOOTSTRAP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34 SUP_ARCH = x86_64 i586 aarch64 armv6l
35
36 ifeq "$(BUILD_ARCH)" "i586"
37 RUST_ARCH = i686
38 else
39 RUST_ARCH = $(BUILD_ARCH)
40 endif
41
42 ifeq "$(BUILD_ARCH)" "armv6l"
43 RUST_BOOTSTRAP = arm-unknown-linux-gnueabi
44 else
45 RUST_BOOTSTRAP = $(RUST_ARCH)-unknown-linux-gnu
46 endif
47
48 ###############################################################################
49 # Top-level Rules
50 ###############################################################################
51
52 objects = $(DL_FILE)
53
54 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
55
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
60
61 install : $(TARGET)
62
63 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
64
65 download :$(patsubst %,$(DIR_DL)/%,$(objects))
66
67 md5 : $(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
95 # Remove LLVM tools
96 rm -vf /usr/lib/rustlib/$(RUST_BOOTSTRAP)/bin/rust-ll{d,vm-dwp}
97
98 @rm -rf $(DIR_APP)
99 @$(POSTBUILD)