From 389b3787577049863c6cc8de70581491548aec40 Mon Sep 17 00:00:00 2001 From: Daniel Francis Date: Fri, 12 Jul 2013 14:42:27 +0000 Subject: Setup initial debian package generator Signed-off-by: Daniel Francis --- 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 '] @@ -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 -- cgit v0.9.1