re-arranged files once again
[comic-widget] / build-comic-widget.py
index 88d3c96..13b0708 100644 (file)
@@ -18,12 +18,12 @@ if __name__ == "__main__":
                pass
        print
        p=py2deb.Py2deb("comic-widget")   #This is the package name and MUST be in lowercase! (using e.g. "mClock" fails miserably...)
-       p.description="A widget that displays comics take from the web."
+       p.description="A widget that displays comics taken from the web."
        p.author="Marcus Wikstrom"
        p.mail="mece@ovi.com"
        p.depends = "python2.5, python-osso, python-gtk2, python-hildon, python-hildondesktop, python2.5-cairo, hildon-desktop-python-loader"
        p.section="user/desktop"
-       p.icon = "/home/user/MyDocs/python/comic-widget/source-images/icon_48x48.png"
+       p.icon = "/home/user/MyDocs/python/comic-widget/source-images/icon.png"
        p.arch="all"                #should be all for python, any for all arch
        p.urgency="low"             #not used in maemo onl for deb os
        p.distribution="fremantle"
@@ -40,7 +40,7 @@ if __name__ == "__main__":
        version = "0.2.5"           #Version of your software, e.g. "1.2.0" or "0.8.2"
        build = "1"                 #Build number, e.g. "1" for the first build of this version of your software. Increment for later re-builds of the same version of your software.
                                     #Text with changelog information to be displayed in the package "Details" tab of the Maemo Application Manager
-       changeloginformation = "First build, don't install this!" 
+       changeloginformation = "First build. Here be dragons!" 
        dir_name = "src"            #Name of the subfolder containing your package source files (e.g. usr\share\icons\hicolor\scalable\myappicon.svg, usr\lib\myapp\somelib.py). We suggest to leave it named src in all projects and will refer to that in the wiki article on maemo.org
        #Thanks to DareTheHair from talk.maemo.org for this snippet that recursively builds the file list 
        for root, dirs, files in os.walk(dir_name):