File tree 3 files changed +15
-0
lines changed
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 20
20
override : true
21
21
target : ${{ matrix.platform.target }}
22
22
components : clippy, rustfmt
23
+ - name : Install clipboard dependencies
24
+ if : ${{ matrix.platform.os == 'ubuntu-latest' }}
25
+ run : sudo apt install -y libxcb-shape0-dev libxcb-xfixes0-dev
23
26
- name : Test
24
27
uses : actions-rs/cargo@v1
25
28
with :
Original file line number Diff line number Diff line change 25
25
override : true
26
26
target : ${{ matrix.platform.target }}
27
27
components : clippy, rustfmt
28
+ - name : Install clipboard dependencies
29
+ if : ${{ matrix.platform.os == 'ubuntu-latest' }}
30
+ run : sudo apt install -y libxcb-shape0-dev libxcb-xfixes0-dev
28
31
- name : Build
29
32
uses : actions-rs/cargo@v1
30
33
with :
Original file line number Diff line number Diff line change @@ -42,6 +42,15 @@ source by running `cargo install jless`.
42
42
The [ releases] ( https://github.com/PaulJuliusMartinez/jless/releases )
43
43
page also contains links to binaries for various architectures.
44
44
45
+ ## Dependencies
46
+
47
+ On Linux systems, X11 libraries are needed to build clipboard access if
48
+ building from source. On Ubuntu you can install these using:
49
+
50
+ ```
51
+ sudo apt-get install libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev
52
+ ```
53
+
45
54
## Website
46
55
47
56
[ jless.io] ( https://jless.io ) is the official website for ` jless ` . Code
You can’t perform that action at this time.
0 commit comments