aboutsummaryrefslogtreecommitdiff
path: root/pkg/ins.sc
blob: c580d88bdf574a58b0ca8f16adeb5d5eaa00cdc5 (plain)
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
name tabsvsspaces
user romangraef
ver 1.0.0

func install {
	mkdir -p /usr/share/tabsvsspaces
	cp -rf * /usr/share/tabsvsspaces
	ln -fs /usr/share/tabsvsspaces/main.py /usr/bin/tabsvsspaces
}

func update {
    &install
}

func install_win {
    &werror
}

func update_win
{
    &install_win
}

func remove_win {
    &werror
}

func werror {
    @echo "Leider gibt es keinen Windows-Support."
}