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