~andrebask/cometsound/cometsound

« back to all changes in this revision

Viewing changes to README

  • Committer: Andrea Bernardini
  • Date: 2012-07-21 16:16:25 UTC
  • mfrom: (221.3.4)
  • Revision ID: git-v1:c573a671d5a2cca165bf53793cd25fd2eb1e3b4e
-

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
*       To install (as superuser):
 
2
        python setup.py install
 
3
 
 
4
        files installed:
 
5
 
 
6
        /usr/local/bin/cometsound
 
7
        /usr/local/share/cometsound
 
8
        /usr/local/share/applications/cometsound.desktop
 
9
        /usr/local/share/cometsound/AF.py
 
10
        /usr/local/share/cometsound/CometSound.py
 
11
        /usr/local/share/cometsound/Controller.py
 
12
        /usr/local/share/cometsound/Dialogs.py
 
13
        /usr/local/share/cometsound/FileBrowser.py
 
14
        /usr/local/share/cometsound/__init__.py
 
15
        /usr/local/share/cometsound/MediaKeysHandler.py
 
16
        /usr/local/share/cometsound/Model.py
 
17
        /usr/local/share/cometsound/Player.py
 
18
        /usr/local/share/cometsound/Playlist.py
 
19
        /usr/local/share/cometsound/SearchBox.py
 
20
        /usr/local/share/cometsound/SortFunctions.py
 
21
        /usr/local/share/cometsound/TagsEditorDialog.py
 
22
        /usr/local/share/cometsound/Translator.py
 
23
        /usr/local/share/cometsound/View.py
 
24
        /usr/local/share/cometsound/icon.png
 
25
        /usr/local/share/cometsound/note.svg
 
26
        /usr/local/share/doc/cometsound
 
27
        /usr/local/share/doc/cometsound/COPYING
 
28
        /usr/local/share/doc/cometsound/copyright
 
29
        /usr/local/share/locale-langpack/"YOURSYSTEMLANGUAGE"/LC_MESSAGES/cometsound.mo
 
30
 
 
31
*       To install in /usr instead of /usr/local (as superuser):
 
32
        python setup.py install --install-layout=deb
 
33
        
 
34
        then you need to edit the /usr/bin/cometsound script and replace the content with:
 
35
        ######################
 
36
        #!/bin/bash
 
37
        echo "Usage: cometsound [Directory|Filelist]"
 
38
        COMETSOUND_DIR=$PWD
 
39
        export COMETSOUND_DIR
 
40
        cd /usr/share/cometsound
 
41
        env python CometSound.py "$@"
 
42
        ######################
 
43
 
 
44
 
 
45
Dependances:
 
46
        python2.6
 
47
        python-gtk2
 
48
        python-gst0.10
 
49
        python-cerealizer
 
50
        python-mutagen
 
51
        python-notify
 
52
        python-gobject
 
53
        python-setproctitle
 
54
        python-dbus
 
55
        (gstreamer-plugins-bad for aac playback)