-
Notifications
You must be signed in to change notification settings - Fork 73
/
build-dependencies.just
40 lines (31 loc) · 1.33 KB
/
build-dependencies.just
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
### DEFAULT ###
# Install dependencies for the default feature on x86_64-unknown-linux-musl
install-default-x86_64-unknown-linux-musl:
sudo apt-get update
sudo apt-get install -y musl-tools
# Install dependencies for the default feature on aarch64-unknown-linux-musl
install-default-aarch64-unknown-linux-musl:
sudo apt-get update
sudo apt-get install -y musl-tools
### MOUNT ###
# Install dependencies for the mount feature on x86_64-unknown-linux-gnu
install-mount-x86_64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y libfuse-dev pkg-config
# Install dependencies for the mount feature on aarch64-unknown-linux-gnu
install-mount-aarch64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y libfuse-dev pkg-config
# Install dependencies for the mount feature on i686-unknown-linux-gnu
install-mount-i686-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y libfuse-dev pkg-config
# Install dependencies for the mount feature on x86_64-apple-darwin
install-mount-x86_64-apple-darwin:
brew install macfuse
# Install dependencies for the mount feature on aarch64-apple-darwin
install-mount-aarch64-apple-darwin:
brew install macfuse
# Install dependencies for the mount feature on x86_64-pc-windows-msvc
install-mount-x86_64-pc-windows-msvc:
winget install winfsp