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