Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 99b359627a456a7ffac405e7337347c85a3daa3f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
try:
    from sugar.activity import bundlebuilder
    bundlebuilder.start()
except ImportError:
    import os
    os.system("find ./ | sed 's,^./,ClubOthello.activity/,g' > MANIFEST")
    os.chdir('..')
    os.system('zip -r ClubOthello.xo ClubOthello.activity')
    os.system('mv ClubOthello.xo ./ClubOthello.activity')
    os.chdir('ClubOthello.activity')