I tried to package this program in Ubuntu, and found that it has no startup script. So I added a `colout` script that gets installed into the scripts directory with the `setup.py`.
11 lines
179 B
Bash
11 lines
179 B
Bash
#!/bin/bash
|
|
# Copyright © 2013 Martin Ueding <dev@martin-ueding.de>
|
|
|
|
# Small launcher script for the main module.
|
|
|
|
# Licence: GPL 3+
|
|
|
|
set -e
|
|
set -u
|
|
|
|
python -m colout.colout "$@"
|