To install onoff from source execute the following from this directory:

    sudo python setup.py install

To build an RPM package:

    python setup.py bdist_rpm
    # The .rpm will end up in the 'dist' directory

To build a Debian package (.deb):

    python setup.py --command-packages=stdeb.command bdist_deb
    # The .deb will end up in the 'deb_dist' directory

NOTE: The above command requires stdeb (http://pypi.python.org/pypi/stdeb).  You
can usually install it with one of the following commands on most distros:

    sudo pip install stdeb
    ...or:
    sudo easy_install stdeb
