~ubuntu-branches/ubuntu/natty/museek+/natty

« back to all changes in this revision

Viewing changes to murmur/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2007-09-07 22:44:15 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070907224415-lpwy5zdp45pljd8i
Tags: 1:0.1.13+svn.20070907.r741-1
* New upstream release: fix implicitly converted pointers (FTBFS on ia64).
* Add an epoch to hijack old murmur package.
* Fix debian/watch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
"""To use this setup script to install Murmur:
 
4
 
 
5
        python setup.py install
 
6
 
 
7
"""
 
8
 
 
9
import sys
 
10
import os
 
11
import glob
 
12
 
 
13
from distutils.core import setup
 
14
from distutils.sysconfig import get_python_lib
 
15
 
 
16
# Local functions
 
17
from setup_inc import *
 
18
 
 
19
if __name__ == '__main__' :
 
20
    LONG_DESCRIPTION = \
 
21
""" Murmur is a PyGTK2 Client for the Museek Daemon for the SoulSeek P2P Network
 
22
"""
 
23
 
 
24
 
 
25
    setup(name                  = "murmur",
 
26
          version               = getVersion(),
 
27
          license               = "GPL",
 
28
          description           = "PyGTK2 Interface for the SoulSeek Museek Daemon.",
 
29
          author                = "daelstorm",
 
30
          author_email          = "daelstorm@gmail.com",
 
31
          url                   = "http://thegraveyard.org/daelstorm/murmur.php",
 
32
          packages              = [ 'pymurmur' ],
 
33
          scripts               = [ 'murmur' ],
 
34
          data_files            = [('share/pixmaps/', ['images/murmur-64px.png']), ('share/applications/', ['files/murmur.desktop'])],
 
35
          data_files            = [('man/man1', ['murmur.1'])],
 
36
          long_description      = LONG_DESCRIPTION
 
37
         )
 
38