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
|
{
"packer-symlinks" : {
"packer" : "yaourt",
"aptitude" : "apt-get",
"bauerbill" : "yaourt"
},
"super-packer" : {
"yaourt" : "pacman"
},
"vim" : {
"apt-get" : "vim",
"pacman" : "vim",
"brew" : "vim",
"yum" : "vim"
},
"python" : {
"apt-get" : "python",
"pacman" : "python2"
},
"python2" : {
"apt-get" : "python",
"pacman" : "python2"
},
"python3" : {
"apt-get" : "python3",
"pacman" : "python"
},
"tinc" : {
"apt-get" : "tinc",
"yaourt" : "tinc"
},
"python-notify" : {
"pacman" : "python-notify",
"apt-get" : "python-notify"
},
"python-dbus" : {
"pacman" : "dbus-python",
"apt-get" : "python-dbus"
},
"w3m" : {
"pacman" : "w3m",
"apt-get" : "w3m"
},
"make" : {
"pacman" : "make",
"apt-get" : "make"
},
"perl-xml-simple" : {
"apt-get" : "libxml-simple-perl",
"pacman" : "perl-xml-simple"
},
"hostname" : {
"pacman" : "inetutils",
"apt-get" : "hostname"
},
"pip" : {
"pacman" : "python-pip",
"apt-get" : "python-pip"
}
}
|