]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/rust
Merge branch 'next' into temp-c163-development
[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 aarch64 armv6l
35
36 RUST_ARCH = $(BUILD_ARCH)
37
38 ifeq "$(BUILD_ARCH)" "armv6l"
39 RUST_BOOTSTRAP = arm-unknown-linux-gnueabi
40 else
41 RUST_BOOTSTRAP = $(RUST_ARCH)-unknown-linux-gnu
42 endif
43
44 ###############################################################################
45 # Top-level Rules
46 ###############################################################################
47
48 objects = $(DL_FILE)
49
50 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
51
52 $(THISAPP)-x86_64-unknown-linux-gnu.tar.gz_MD5 = efc4d147e25918e60678a69fcaf67b55
53 $(THISAPP)-aarch64-unknown-linux-gnu.tar.gz_MD5 = e85e1758b9770bae16c253825e2ecf9c
54 $(THISAPP)-arm-unknown-linux-gnueabi.tar.gz_MD5 = da4fa1b2bd21dc6d2d7e791d8faaa3eb
55
56 install : $(TARGET)
57
58 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
59
60 download :$(patsubst %,$(DIR_DL)/%,$(objects))
61
62 md5 : $(subst %,%_MD5,$(objects))
63
64 ###############################################################################
65 # Downloading, checking, md5sum
66 ###############################################################################
67
68 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71 $(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74 $(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77 ###############################################################################
78 # Installation Details
79 ###############################################################################
80
81 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
83 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
84
85 cd $(DIR_APP) && ./install.sh \
86 --components=cargo,rustc,rust-std-$(RUST_BOOTSTRAP) \
87 --prefix=/usr \
88 --disable-ldconfig
89
90 # Remove LLVM tools
91 rm -vf /usr/lib/rustlib/$(RUST_BOOTSTRAP)/bin/rust-ll{d,vm-dwp}
92
93 @rm -rf $(DIR_APP)
94 @$(POSTBUILD)