runCore.py is now name gajim.py
This commit is contained in:
parent
3c5c49caa5
commit
b6ed560d84
|
@ -28,9 +28,9 @@ install-stamp: build-stamp
|
|||
cd debian/tmp && install -d `cat ../dirs`
|
||||
make install PREFIX=/usr DESTDIR=`pwd`/debian/tmp
|
||||
cp gajim.xpm debian/tmp/usr/share/pixmaps
|
||||
chmod -x debian/tmp/usr/share/gajim/runCore.py
|
||||
sed -ne '1d;w debian/tmp/runCore.py.tmp' debian/tmp/usr/share/gajim/runCore.py
|
||||
mv debian/tmp/runCore.py.tmp debian/tmp/usr/share/gajim/runCore.py
|
||||
chmod -x debian/tmp/usr/share/gajim/gajim.py
|
||||
sed -ne '1d;w debian/tmp/gajim.py.tmp' debian/tmp/usr/share/gajim/gajim.py
|
||||
mv debian/tmp/gajim.py.tmp debian/tmp/usr/share/gajim/gajim.py
|
||||
|
||||
binary-indep: checkroot build
|
||||
$(checkdir)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
## runCore.py
|
||||
## gajim.py
|
||||
##
|
||||
## Gajim Team:
|
||||
## - Yann Le Boulanger <asterix@lagaule.org>
|
|
@ -22,4 +22,4 @@ if [ `id -u` -eq 0 ]; then
|
|||
fi
|
||||
|
||||
cd PREFIX/share/gajim
|
||||
python runCore.py
|
||||
python gajim.py
|
||||
|
|
|
@ -40,8 +40,8 @@ opts = {
|
|||
setup(
|
||||
name = "Gajim",
|
||||
description = "A jabber client",
|
||||
# console=["runCore.py"],
|
||||
windows = [{"script": "runCore.py"}],
|
||||
# console=["gajim.py"],
|
||||
windows = [{"script": "gajim.py"}],
|
||||
options=opts,
|
||||
data_files=[("plugins/gtkgui", glob.glob("plugins/gtkgui/gtkgui.glade")),
|
||||
("plugins/gtkgui/icons/sun", glob.glob("plugins/gtkgui/icons/sun/*.*")),
|
||||
|
|
Loading…
Reference in New Issue