Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 08a657dff2dd7be37550c1f8d107f998390d3e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python

# Make the MANIFEST file.  The contents of the activity folder and the NEWS and MANIFEST
# files are already included in the .xo file which the bundlebuilder creates, so don't
# add them to the manifest file.
import os
os.system("find ./ -name 'activity' -prune -o -name 'NEWS' \
                                    -prune -o -name 'MANIFEST' \
                                    -prune -o -name '.svn' \
                                    -prune -o -name '*.pyc' \
                                    -prune -o -name '*.xo' \
                                    -prune -o -name '*.swp' \
                                    -prune -o -name '.git*' \
                                    -prune -o -type f \
                   -print > MANIFEST") 

from sugar.activity import bundlebuilder
bundlebuilder.start("ElementsActivity")