diff options
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/ins.sc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pkg/ins.sc b/pkg/ins.sc new file mode 100644 index 0000000..c580d88 --- /dev/null +++ b/pkg/ins.sc @@ -0,0 +1,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." +} + |