~gmb/gwibber/use-dates-for-indexes

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Milo Casagrande
  • Date: 2008-12-26 10:43:50 UTC
  • mto: (165.1.11 gwibber-milo)
  • mto: This revision was merged to the branch mainline in revision 166.
  • Revision ID: milo@ubuntu.com-20081226104350-xr52pfz65c7pacyu

Modified setup files for handling .in dekstop file

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# setup.py for gnuConcept
4
4
 
5
 
import subprocess
6
5
from distutils.core import setup
7
6
from DistUtilsExtra.command import *
8
7
from glob import glob
9
8
 
10
 
# Need this to create .desktop file otherwise it will not find it
11
 
# during install
12
 
cmd = "intltool-merge -d -u po/ gwibber.desktop.in gwibber.desktop".split(" ")
13
 
proc = subprocess.Popen(cmd)
14
 
proc.wait()
15
 
 
16
9
setup(name="gwibber",
17
10
      version="0.7",
18
11
      author="Ryan Paul",
27
20
    ('share/gwibber/ui/themes/shine', glob("ui/themes/shine/*")),
28
21
    ('share/gwibber/ui', ['ui/progress.gif']),
29
22
    ('share/gwibber/ui', ['ui/gwibber.svg']),
30
 
    ('share/pixmaps', ['ui/gwibber.svg']),
31
 
    ('share/applications/',['gwibber.desktop'])
 
23
    ('share/pixmaps', ['ui/gwibber.svg'])
32
24
    ],
33
25
      scripts=['bin/gwibber'],
34
26
      cmdclass = { "build" :  build_extra.build_extra,