Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 3fbb78500b6add413d458f7d4e661f5fb5fdc33a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python
# -*- coding: utf-8 -*-

try:
    from sugar.activity import bundlebuilder
    bundlebuilder.start()
except ImportError:
    import os
    os.system("find ./ | sed 's,^./,Clock/,g' > MANIFEST")
    os.chdir("..")
    os.system("zip -r Clock.xo Clock")
    os.system("mv Clock.xo ./Clock")
    os.chdir("Clock")