From c5ba6a09ccf4002b5dc143fa73d589b3171b8dfd Mon Sep 17 00:00:00 2001 From: Cristhofer Travieso Date: Fri, 24 Aug 2012 15:49:28 +0000 Subject: Initial commit --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..568ed0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*.pyc +*.pyo +*.mo +*~ +*.txt diff --git a/activity.py b/activity.py new file mode 100644 index 0000000..792d600 --- /dev/null +++ b/activity.py @@ -0,0 +1 @@ +# diff --git a/activity/activity.info b/activity/activity.info new file mode 100644 index 0000000..ffee2dd --- /dev/null +++ b/activity/activity.info @@ -0,0 +1,7 @@ +[Activity] +name = Tic Tac Toe +activity_version = 1 +bundle_id = org.sugarlabs.Tic-Tac-Toe +exec = sugar-activity activity.Activity -s +icon = icon +license = GPLv3+ diff --git a/activity/icon.svg b/activity/icon.svg new file mode 100644 index 0000000..f1f5437 --- /dev/null +++ b/activity/icon.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..530f97c --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +# Copyright (C) 2006, Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +from sugar.activity import bundlebuilder + +bundlebuilder.start() -- cgit v0.9.1