Il giorno gio, 28/01/2010 alle 11.44 -0500, Luis Felipe López Acevedo ha
scritto:
> El jue, 28-01-2010 a las 22:08 +0530, Thameera Senanayaka escribió:
> > Hello,
> > I'm quite new to PyGTK programming. How can I deploy a PyGTK
> > application in linux? (eg: How to create a deb file, etc) Where can I
> > get more information from? 
> > Thanks!
> > 
> 
> http://showmedo.com/videotutorials/video?name=linuxJensMakingDeb
> 

That video is nice, but since it has been made debhelper 7 was born, and
I strongly suggest to use it.

Basically, if your application has a nice setup.py, just skip all the
part that talks about the "rules" file, and put inside it just:

#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# This has to be exported to make some magic below work.
export DH_OPTIONS

%:
        dh  $@


(Beware, the last line contains a tab, not spaces)

Pietro


_______________________________________________
pygtk mailing list   [email protected]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/

Reply via email to