Skip to content
Snippets Groups Projects
Commit b6ed560d authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

runCore.py is now name gajim.py

parent 3c5c49ca
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
#!/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/*.*")),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment