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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
This directory contains packaging configurations for various Linux distributions and Windows.
Configuration is in `Cargo.toml` under `[package.metadata.deb]`.
Build with:
```bash
cargo install cargo-deb
cargo deb
```
Configuration is in `Cargo.toml` under `[package.metadata.generate-rpm]`.
Build with:
```bash
cargo install cargo-generate-rpm
cargo build --release
cargo generate-rpm
```
PKGBUILD is located in `packaging/arch/PKGBUILD`.
Build with:
```bash
cd packaging/arch
makepkg -si
```
Or install from AUR (when available):
```bash
yay -S bitbucket-cli
```
APKBUILD is located in `packaging/alpine/APKBUILD`.
Build with:
```bash
cd packaging/alpine
abuild -r
```
WiX configuration is in `packaging/windows/main.wxs`.
Build with WiX Toolset:
```bash
cargo build --release
candle packaging/windows/main.wxs
light -ext WixUIExtension main.wixobj
```
- --