-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.mk
More file actions
36 lines (24 loc) · 780 Bytes
/
utils.mk
File metadata and controls
36 lines (24 loc) · 780 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
all_targets += utils
utils_simple = pcregrep whois nmap curl htop jq sshfs bindfs expect xclip fzf arandr kolourpaint okular xdotool keepassxc
utils_simple_targets = $(addprefix /usr/bin/,$(utils_simple))
utils: /usr/bin/gdebi /usr/bin/netstat /usr/bin/convert /usr/bin/apt-file /var/snap/fx /usr/bin/xmllint $(utils_simple_targets)
.PHONY: utils
$(utils_simple_targets):
$(call install,$@)
/usr/bin/gdebi:
$(call install,gdebi-core)
/usr/bin/netstat:
$(call install,net-tools)
/usr/bin/convert:
$(call install,imagemagick)
/usr/bin/apt-file:
$(call install,apt-file)
sudo apt-file update
/var/snap/fx:
sudo snap install fx
/usr/bin/xmllint:
$(call install,libxml2-utils)
/usr/sbin/uptimed:
$(call install,uptimed)
/usr/sbin/gparted:
$(call install,gparted)