File tree Expand file tree Collapse file tree 6 files changed +36
-7
lines changed Expand file tree Collapse file tree 6 files changed +36
-7
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ This file is used to indicate primary maintainership for this package. A package
3
3
- Jared Cervantes
4
4
- Matrix: @jaredy89 : matrix .org
5
5
6
+
Original file line number Diff line number Diff line change 1
- ld-linux-x86-64.so.2
2
1
libc.so.6
3
2
libgcc_s.so.1
4
3
libm.so.6
Original file line number Diff line number Diff line change 1
- ld-linux-x86-64.so.2:__tls_get_addr
2
1
libc.so.6:__ctype_b_loc
3
2
libc.so.6:__ctype_tolower_loc
4
3
libc.so.6:__ctype_toupper_loc
@@ -53,7 +52,6 @@ libc.so.6:fdopendir
53
52
libc.so.6:feof
54
53
libc.so.6:ferror
55
54
libc.so.6:fflush
56
- libc.so.6:fgets
57
55
libc.so.6:flockfile
58
56
libc.so.6:fopen
59
57
libc.so.6:fopen64
@@ -123,6 +121,7 @@ libc.so.6:pclose
123
121
libc.so.6:pipe2
124
122
libc.so.6:poll
125
123
libc.so.6:popen
124
+ libc.so.6:posix_memalign
126
125
libc.so.6:posix_spawn_file_actions_adddup2
127
126
libc.so.6:posix_spawn_file_actions_destroy
128
127
libc.so.6:posix_spawn_file_actions_init
@@ -162,7 +161,6 @@ libc.so.6:raise
162
161
libc.so.6:read
163
162
libc.so.6:readdir64
164
163
libc.so.6:readlink
165
- libc.so.6:readv
166
164
libc.so.6:realloc
167
165
libc.so.6:realpath
168
166
libc.so.6:recv
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ releases:
4
4
# No known CPE, checked 2025-09-27
5
5
security :
6
6
cpe : ~
7
+
Original file line number Diff line number Diff line change @@ -12,14 +12,30 @@ description: |
12
12
and extensibility through plugins and themes.
13
13
networking : true
14
14
builddeps :
15
+ - imagemagick
15
16
- rust
16
17
rundeps :
17
18
- file
18
19
setup : |
19
20
%cargo_fetch
20
21
21
22
build : |
22
- %cargo_build
23
+ YAZI_GEN_COMPLETIONS=true cargo build --release --frozen --no-default-features
23
24
24
25
install : |
25
- %cargo_install
26
+ %cargo_install yazi ya
27
+ install -Dm644 "LICENSE" "$installdir/usr/share/licenses/yazi/LICENCE"
28
+ install -Dm644 "README.md" "$installdir/usr/share/doc/yazi/README.md"
29
+ install -Dm644 "assets/yazi.desktop" "$installdir/usr/share/applications/yazi.desktop"
30
+
31
+ # Install icons
32
+ for r in 16 24 32 48 64 128 256; do
33
+ install -dm755 "$installdir/usr/share/icons/hicolor/${r}x${r}/apps"
34
+ magick assets/logo.png -resize "${r}x${r}" "$installdir/usr/share/icons/hicolor/${r}x${r}/apps/yazi.png"
35
+ done
36
+
37
+ # Install shell completions
38
+ cd yazi-boot/completions
39
+ install -Dm644 "yazi.bash" "$installdir/usr/share/bash-completion/completions/yazi"
40
+ install -Dm644 "yazi.fish" "$installdir/usr/share/fish/vendor_completions.d/yazi.fish"
41
+ install -Dm644 "_yazi" "$installdir/usr/share/zsh/site-functions/_yazi"
Original file line number Diff line number Diff line change @@ -22,12 +22,26 @@ and extensibility through plugins and themes.
22
22
</Description >
23
23
<PartOf >system.utils</PartOf >
24
24
<Files >
25
+ <Path fileType =" executable" >/usr/bin/ya</Path >
25
26
<Path fileType =" executable" >/usr/bin/yazi</Path >
27
+ <Path fileType =" data" >/usr/share/applications/yazi.desktop</Path >
28
+ <Path fileType =" data" >/usr/share/bash-completion/completions/yazi</Path >
29
+ <Path fileType =" doc" >/usr/share/doc/yazi/README.md</Path >
30
+ <Path fileType =" data" >/usr/share/fish/vendor_completions.d/yazi.fish</Path >
31
+ <Path fileType =" data" >/usr/share/icons/hicolor/128x128/apps/yazi.png</Path >
32
+ <Path fileType =" data" >/usr/share/icons/hicolor/16x16/apps/yazi.png</Path >
33
+ <Path fileType =" data" >/usr/share/icons/hicolor/24x24/apps/yazi.png</Path >
34
+ <Path fileType =" data" >/usr/share/icons/hicolor/256x256/apps/yazi.png</Path >
35
+ <Path fileType =" data" >/usr/share/icons/hicolor/32x32/apps/yazi.png</Path >
36
+ <Path fileType =" data" >/usr/share/icons/hicolor/48x48/apps/yazi.png</Path >
37
+ <Path fileType =" data" >/usr/share/icons/hicolor/64x64/apps/yazi.png</Path >
38
+ <Path fileType =" data" >/usr/share/licenses/yazi/LICENCE</Path >
39
+ <Path fileType =" data" >/usr/share/zsh/site-functions/_yazi</Path >
26
40
</Files >
27
41
</Package >
28
42
<History >
29
43
<Update release =" 1" >
30
- <Date >2025-09-27 </Date >
44
+ <Date >2025-10-02 </Date >
31
45
<Version >25.5.31</Version >
32
46
<Comment >Packaging update</Comment >
33
47
<Name >Jared Cervantes</Name >
You can’t perform that action at this time.
0 commit comments