Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Francis <francis@sugarlabs.org>2013-07-12 14:42:27 (GMT)
committer Daniel Francis <francis@sugarlabs.org>2013-07-12 14:42:27 (GMT)
commit389b3787577049863c6cc8de70581491548aec40 (patch)
tree895d47aee42d692f467497f63371e21fc8cbd828
parent16e6350a4042991620855a3af539869af5e7614e (diff)
Setup initial debian package generator
Signed-off-by: Daniel Francis <francis@sugarlabs.org>
-rw-r--r--Makefile4
-rw-r--r--info.py8
m---------makescripts0
3 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e1df81c..ac29dcf 100644
--- a/Makefile
+++ b/Makefile
@@ -22,4 +22,6 @@ xo_bundle:
python makescripts/xobuild.py
dist_tarball:
python setup.py build
- python makescripts/desktopbuild.py \ No newline at end of file
+ python makescripts/desktopbuild.py
+debian: dist_tarball
+ python makescripts/debianpackage.py
diff --git a/info.py b/info.py
index c0cb741..6b25d1d 100644
--- a/info.py
+++ b/info.py
@@ -53,7 +53,9 @@ except:
generic_name = _('Mathematical Function Plotter')
lower_name = 'graph-plotter'
-copyright = 'Copyright © 2012 Daniel Francis'
+
+copyright_data = {'year': '2012-2013', 'holder': 'Daniel Francis'}
+copyright = 'Copyright © %s %s' % (copyright_data['year'], copyright_data['holder'])
version = '9'
description = _("Plot mathematical functions and study maths.")
authors = ['Daniel Francis <francis@sugarlabs.org>']
@@ -71,3 +73,7 @@ license = 'GPLv3'
license_file = open('COPYING')
license_content = license_file.read()
license_file.close()
+
+git = 'git://git.sugarlabs.org/graph-plotter/mainline.git'
+git_browser = 'http://git.sugarlabs.org/graph-plotter/mainline'
+deb_depends = ['python-numpy', 'python-gi-cairo', 'gir1.2-gtk-3.0']
diff --git a/makescripts b/makescripts
-Subproject 770d1514740f6889ed77eee1b96fa8e234972a8
+Subproject d81a84824e02848beb3b11b6b0a29e24ed65bb1