-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathxbps.sh
More file actions
70 lines (54 loc) · 899 Bytes
/
Copy pathxbps.sh
File metadata and controls
70 lines (54 loc) · 899 Bytes
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
67
68
69
70
#!/usr/bin/env sh
# Purpose: Void Linux support
# Author : Connor Sample
# License: Fair license (http://www.opensource.org/licenses/fair)
# Source : http://github.com/icy/pacapt/
# Copyright (C) 2021 Connor Sample
#
# Usage of the works is permitted provided that this instrument is
# retained with the works, so that any entity that uses the works is
# notified of this instrument.
#
# DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
_xbps_init() {
:
}
xbps_Q() {
xbps-query -l
}
xbps_Qe() {
xbps-query -m
}
xbps_Qi() {
xbps-query -s "$@"
}
xbps_Ql() {
xbps-query -f "$@"
}
xbps_Qo() {
xbps-query -o "$@"
}
xbps_Qs() {
xbps-query -s "$@"
}
xbps_S() {
xbps-install "$@"
}
xbps_Ss() {
xbps-query -Rs "$@"
}
xbps_Su() {
xbps-install -u
}
xbps_Sy() {
xbps-install -S
}
xbps_Suy() {
xbps-install -Su
}
xbps_R() {
xbps-remove "$@"
}
xbps_Scc() {
xbps-remove -O
}